[squeak-dev] The Trunk: EToys-mt.135.mcz

commits at source.squeak.org commits at source.squeak.org
Mon May 9 08:30:11 UTC 2016


Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.135.mcz

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

Name: EToys-mt.135
Author: mt
Time: 9 May 2016, 10:29:55.747377 am
UUID: 2f85239d-d85b-144e-a9f8-7b9f650c4306
Ancestors: EToys-mt.134

Adds etoys-specific code that was still in the base system.

=============== Diff against EToys-mt.134 ===============

Item was added:
+ ----- Method: MorphicProject>>currentStack: (in category '*Etoys-stack') -----
+ currentStack: aStack
+ 	"Set the current stack as indicated; if the parameter supplied is nil, delete any prior memory of the CurrentStack"
+ 
+ 	aStack
+ 		ifNil:
+ 			[self removeParameter: #CurrentStack]
+ 		ifNotNil:
+ 			[self projectParameterAt: #CurrentStack put: aStack]!



More information about the Squeak-dev mailing list