[squeak-dev] The Trunk: Morphic-ct.1945.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Mar 25 19:13:03 UTC 2022


Christoph Thiede uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ct.1945.mcz

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

Name: Morphic-ct.1945
Author: ct
Time: 25 March 2022, 8:12:39.69861 pm
UUID: 8c1a8770-0b9b-cc42-b30a-bb58e4870f75
Ancestors: Morphic-ct.1944

Merges SparseLargeTable explorerContents.1.cs:

	This changeset revises the ObjectExplorer representation of SparseLargeTables/SparseLargeArrays by only displaying non-default values next to the defaultValue variable.

=============== Diff against Morphic-ct.1944 ===============

Item was added:
+ ----- Method: SparseLargeTable>>explorerContents (in category '*Morphic-Explorer') -----
+ explorerContents
+ 
+ 	^  Array streamContents: [:stream |
+ 		stream nextPut: (ObjectExplorerWrapper
+ 			with: defaultValue
+ 			name: 'defaultValue'
+ 			model: self).
+ 		self sparseElementsAndIndicesDo: [:element :index |
+ 			stream nextPut: (ObjectExplorerWrapper
+ 				with: element
+ 				name: index printString
+ 				model: self)]]!



More information about the Squeak-dev mailing list