https://forum.world.st/The-Trunk-Kernel-eem-1366-mcz-tp5126558p5126617.html
> Eliot Miranda uploaded a new version of Kernel to project The Trunk:
>
http://source.squeak.org/trunk/Kernel-eem.1366.mcz>
> ==================== Summary ====================
>
> Name: Kernel-eem.1366
> Author: eem
> Time: 26 January 2021, 4:27:57.204259 pm
> UUID: 3a706d32-c2d6-416f-82c1-bbf735650385
> Ancestors: Kernel-eem.1365
>
> Slightly faster implementation of Context>>#isPrimFailToken:.
> Improve the comments in Context>>#isHandlerContext/#isUnwindContext.
> Nuke an obsolete method.
>
> =============== Diff against Kernel-eem.1365 ===============
>
> Item was changed:
> ----- Method: Context>>isHandlerContext (in category 'private-exceptions') -----
> isHandlerContext
> + "Answer if the receiver is for a method that is marked as an exception handler.
> + BlockClosure>>#on:do: uses this primitive to identify itself to the VM
> + as an exception handler method, which the VM uses in primitive 197
> + Context>>#findNextHandlerContextStarting, primitiveFindHandlerContext,
> + to accelerate the search for exception handlers."
> - "is this context for method that is marked?"
> ^method primitive = 199!
>
> Item was changed:
> ----- Method: Context>>isPrimFailToken: (in category 'private') -----
> isPrimFailToken: anObject
> + ^(self objectClass: anObject) isArray
> - ^(self objectClass: anObject) == Array
previous version. Perhaps there was a good reason.