[squeak-dev] The Trunk: Environments-nice.17.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Mar 10 22:45:26 UTC 2013


Nicolas Cellier uploaded a new version of Environments to project The Trunk:
http://source.squeak.org/trunk/Environments-nice.17.mcz

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

Name: Environments-nice.17
Author: nice
Time: 10 March 2013, 11:44:37.036 pm
UUID: 12ebee07-1762-40c6-9cfc-1d6aeab68043
Ancestors: Environments-cwp.16, Environments-fbs.5

Merge fbs.5 because it has a return which makes removeKey:ifAbsent: better behaved.

=============== Diff against Environments-cwp.16 ===============

Item was changed:
+ ----- Method: Environment>>keyAtValue: (in category 'emulating') -----
- ----- Method: Environment>>keyAtValue: (in category 'compatibility') -----
  keyAtValue: anObject
  	^ self keyAtIdentityValue: anObject!

Item was changed:
+ ----- Method: Environment>>removeKey:ifAbsent: (in category 'accessing') -----
- ----- Method: Environment>>removeKey:ifAbsent: (in category 'compatibility') -----
  removeKey: key ifAbsent: aBlock
+ 	self flag: #review.
+ 	^ contents removeKey: key ifAbsent: aBlock!
- 	contents
- 		removeKey: key
- 		ifAbsent: aBlock!



More information about the Squeak-dev mailing list