[Pkg] Monticello Public: Monticello.impl-damiencassou.646.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Thu Jul 30 14:35:42 UTC 2009


Damien Cassou uploaded a new version of Monticello.impl to project Monticello Public:
http://www.squeaksource.com/mc/Monticello.impl-damiencassou.646.mcz

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

Name: Monticello.impl-damiencassou.646
Author: damiencassou
Time: 30 July 2009, 4:33:25 pm
UUID: 7fad0eec-205e-40a9-8eaf-5553a4eff8da
Ancestors: Monticello.impl-kph.645

- Assigning a value to a block variable is forbidden in all closure images.

=============== Diff against Monticello.impl-kph.645 ===============

Item was changed:
  ----- Method: MCMczReader>>associate: (in category 'as yet unclassified') -----
  associate: tokens
  	| result |
  	result := Dictionary new.
+ 	tokens pairsDo: [:key :value | |newValue|
+ 					newValue := value.
+ 					value isString ifFalse: [newValue := value collect: [:ea | self associate: ea]].
+ 					result at: key put: newValue].
- 	tokens pairsDo: [:key :value | 
- 					value isString ifFalse: [value := value collect: [:ea | self associate: ea]].
- 					result at: key put: value].
  	^ result!



More information about the Packages mailing list