A new version of Kernel was added to project The Inbox:
http://source.squeak.org/inbox/Kernel-ct.1369.mcz==================== Summary ====================
Name: Kernel-ct.1369
Author: ct
Time: 1 February 2021, 3:41:16.626697 pm
UUID: 347948ea-2d23-fc4b-9ffc-a283fce06c65
Ancestors: Kernel-eem.1366
Hotfix for Context >> #isPrimFailToken: (simulator is broken ATM). See
http://forum.world.st/The-Trunk-Kernel-eem-1366-mcz-tp5126558p5126617.html.
=============== Diff against Kernel-eem.1366 ===============
Item was changed:
----- Method: Context>>isPrimFailToken: (in category 'private') -----
isPrimFailToken: anObject
+ ^ anObject isArray
- ^(self objectClass: anObject) isArray
and: [anObject size = 2
and: [(anObject at: 1) == PrimitiveFailToken]]!