The Trunk: Monticello-eem.649.mcz

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

The Trunk: Monticello-eem.649.mcz

commits-2
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'
  !