[squeak-dev] The Trunk: Monticello-eem.649.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Oct 17 19:48:42 UTC 2016


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

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

Name: Monticello-eem.649
Author: eem
Time: 17 October 2016, 12:48:18.49536 pm
UUID: 0309f626-9ab4-43ee-a31e-031794753283
Ancestors: Monticello-mt.648

Fix Monticello for 16-bit and 64-bit integer arrays.

=============== Diff against Monticello-mt.648 ===============

Item was changed:
  ----- Method: MCClassDefinition>>kindOfSubclass (in category 'printing') -----
  kindOfSubclass
  	type = #normal ifTrue: [^' subclass: '].
  	type = #variable ifTrue: [^' variableSubclass: '].
  	type = #bytes ifTrue: [^' variableByteSubclass: '].
  	type = #compiledMethod ifTrue: [^' variableByteSubclass: ' ].
+ 	type = #shorts ifTrue: [^' variableDoubleByteSubclass: '].
  	type = #words ifTrue: [^' variableWordSubclass: '].
+ 	type = #longs ifTrue: [^' variableDoubleWordSubclass: '].
  	type = #weak ifTrue: [^' weakSubclass: ' ].
  	type = #ephemeron ifTrue: [^' ephemeronSubclass: ' ].
  	type = #immediate ifTrue: [^' immediateSubclass: ' ].
  	self error: 'Unrecognized class type'
  !



More information about the Squeak-dev mailing list