[squeak-dev] The Trunk: System-dtl.184.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Nov 30 03:02:04 UTC 2009


David T. Lewis uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-dtl.184.mcz

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

Name: System-dtl.184
Author: dtl
Time: 29 November 2009, 10:58:42 am
UUID: 9d58676e-c70e-4afc-99f4-87d5876b3e79
Ancestors: System-dtl.183

Restore original #scopeFor:from:envtAndPathIfFound: method (from a Squeak 3.6 image), eliminating deprecation marker and removing it from package "39Deprecated".

=============== Diff against System-dtl.183 ===============

Item was added:
+ ----- Method: SystemDictionary>>scopeFor:from:envtAndPathIfFound: (in category 'dictionary access') -----
+ scopeFor: varName from: lower envtAndPathIfFound: envtAndPathBlock
+ 	"Null compatibility with partitioning into environments."
+ 
+ 	(self includesKey: varName)
+ 		ifTrue: [^ envtAndPathBlock value: self value: String new]
+ 		ifFalse: [^ nil]!




More information about the Squeak-dev mailing list