The Trunk: Morphic-mt.1255.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-mt.1255.mcz

commits-2
Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1255.mcz

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

Name: Morphic-mt.1255
Author: mt
Time: 10 August 2016, 6:00:43.408211 pm
UUID: 44a5f88d-a694-6a45-a175-392df23e3839
Ancestors: Morphic-mt.1254

Fixes object explorer contents for OrderedDictionary.

=============== Diff against Morphic-mt.1254 ===============

Item was added:
+ ----- Method: OrderedDictionary>>explorerContents (in category '*Morphic-Explorer') -----
+ explorerContents
+
+ ^self keys replace: [ :key |
+ ObjectExplorerWrapper
+ with: (self at: key)
+ name: (key printString contractTo: 32)
+ model: self ]
+ !