[squeak-dev] The Trunk: Kernel-eem.1076.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Mar 29 22:01:57 UTC 2017


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!



More information about the Squeak-dev mailing list