[squeak-dev] The Trunk: Tools-eem.788.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jan 6 23:38:00 UTC 2018


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

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

Name: Tools-eem.788
Author: eem
Time: 6 January 2018, 3:37:50.088654 pm
UUID: bb90e476-4cf4-47bd-a8be-bc2785cc8504
Ancestors: Tools-eem.787

Add some more canonicalArgumentName implementations for well-known Collection subclasses.

=============== Diff against Tools-eem.787 ===============

Item was added:
+ ----- Method: ArrayedCollection>>canonicalArgumentName (in category '*Tools-Debugger') -----
+ canonicalArgumentName
+ 	^ 'Array'!

Item was added:
+ ----- Method: HashedCollection>>canonicalArgumentName (in category '*Tools-Debugger') -----
+ canonicalArgumentName
+ 	^ 'Dictionary'!

Item was added:
+ ----- Method: SequenceableCollection>>canonicalArgumentName (in category '*Tools-Debugger') -----
+ canonicalArgumentName
+ 	^ 'Sequence'!

Item was added:
+ ----- Method: Set>>canonicalArgumentName (in category '*Tools-Debugger') -----
+ canonicalArgumentName
+ 	^ 'Set'!

Item was added:
+ ----- Method: Symbol>>canonicalArgumentName (in category '*Tools-Debugger') -----
+ canonicalArgumentName
+ 	^ 'Symbol'!



More information about the Squeak-dev mailing list