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

commits at source.squeak.org commits at source.squeak.org
Sun Jul 25 17:23:53 UTC 2021


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

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

Name: Kernel-eem.1408
Author: eem
Time: 25 July 2021, 10:23:50.0232 am
UUID: 0c8e9349-43a9-4f08-b6f5-acb3b31aa3f9
Ancestors: Kernel-eem.1407

Make it more convenient to move declarations into SharedPools.

=============== Diff against Kernel-eem.1407 ===============

Item was added:
+ ----- Method: SharedPool class>>declare:from: (in category 'adding') -----
+ declare: key from: aDictionaryOrBehavior
+ 	self ensureClassPool.
+ 	^classPool
+ 		declare: key
+ 		from: (aDictionaryOrBehavior isBehavior
+ 				ifTrue: [aDictionaryOrBehavior classPool]
+ 				ifFalse: [aDictionaryOrBehavior])!



More information about the Squeak-dev mailing list