Eliot Miranda uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-eem.1144.mcz==================== Summary ====================
Name: Kernel-eem.1144
Author: eem
Time: 12 January 2018, 11:39:55.477887 am
UUID: df2a5bb9-ac57-44c9-8d5c-d50a8ead225a
Ancestors: Kernel-eem.1143
Have the InstructionPrinter be honest about printing the pushLiteralVariable: bytecode. It's too confusing otherwise.
=============== Diff against Kernel-eem.1143 ===============
Item was changed:
----- Method: InstructionPrinter>>pushLiteralVariable: (in category 'instruction decoding') -----
pushLiteralVariable: anAssociation
+ "Print the Push Value Of anAssociation On Top Of Stack bytecode."
- "Print the Push Contents Of anAssociation On Top Of Stack bytecode."
+ self print: 'pushLitVar: ' , (anAssociation printStringLimitedTo: 64)!
- self print: 'pushLit: ' , anAssociation key!