"Change Set: DicAddAll-OK Date: 17 December 2003 Author: Richard A. O'Keefe Override #addAll: in Dictionary so as to conform to ANSI 5.7.2.1. This also makes #, work for dictionaries in Squeak, although ANSI Smalltalk does not require this."! !Dictionary methodsFor: 'adding' stamp: 'raok 12/17/2003 16:01'! addAll: aKeyedCollection aKeyedCollection == self ifFalse: [ aKeyedCollection keysAndValuesDo: [:key :value | self at: key put: value]]. ^aKeyedCollection! !