[squeak-dev] The Trunk: Morphic-mt.1881.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Feb 9 18:42:11 UTC 2022


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

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

Name: Morphic-mt.1881
Author: mt
Time: 9 February 2022, 7:42:05.766774 pm
UUID: 3bf5cad4-7335-014a-8e21-19349d667ac3
Ancestors: Morphic-mt.1880

Move two methods about ObjectExplorer from Etoys to here.

=============== Diff against Morphic-mt.1880 ===============

Item was added:
+ ----- Method: Collection>>explorerContents (in category '*Morphic-Explorer') -----
+ explorerContents
+ 
+ 	^self explorerContentsWithIndexCollect: [:value :index |
+ 		ObjectExplorerWrapper
+ 			with: value
+ 			name: index printString
+ 			model: self]!

Item was added:
+ ----- Method: Collection>>explorerContentsWithIndexCollect: (in category '*Morphic-Explorer') -----
+ explorerContentsWithIndexCollect: twoArgBlock
+ 
+ 	^ self asOrderedCollection withIndexCollect: twoArgBlock
+ !



More information about the Squeak-dev mailing list