The Trunk: Kernel-eem.1076.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Kernel-eem.1076.mcz

commits-2
Eliot Miranda uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-eem.1076.mcz

==================== Summary ====================

Name: Kernel-eem.1076
Author: eem
Time: 29 March 2017, 3:01:43.924041 pm
UUID: b60293c4-14bf-46f0-b254-7bfa9a4287d8
Ancestors: Kernel-eem.1075

Save the explicit script to morph MethodContext into Context

=============== Diff against Kernel-eem.1075 ===============

Item was added:
+ ----- Method: MethodContext class>>bootstrapContext (in category 'context bootstrap') -----
+ bootstrapContext
+ "Rename MethodContext to Context."
+ MethodContext ensureClassPool.
+ MethodContext classPool addAll: ContextPart classPool associations.
+ MethodContext superclass: InstructionStream.
+ MethodContext class superclass: InstructionStream class.
+ InstructionStream addSubclass: MethodContext.
+ MethodContext
+ setInstVarNames: ContextPart instVarNames, MethodContext instVarNames;
+ rename: #Context!