The Trunk: Monticello-topa.627.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-topa.627.mcz

commits-2
Tobias Pape uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-topa.627.mcz

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

Name: Monticello-topa.627
Author: topa
Time: 26 February 2016, 1:10:40.42795 pm
UUID: 65a5a11e-e321-40e0-bf4b-7e80a90509a7
Ancestors: Monticello-mt.626

Fix MCStReader for 'new' Spur class types

=============== Diff against Monticello-mt.626 ===============

Item was changed:
  ----- Method: MCStReader>>typeOfSubclass: (in category 'as yet unclassified') -----
  typeOfSubclass: aSymbol
  #(
  (subclass: normal)
  (variableSubclass: variable)
  (variableByteSubclass: bytes)
  (variableWordSubclass: words)
  (weakSubclass: weak)
+ (ephemeronSubclass: ephemeron)
+ (immediateSubclass: immediate)
  ) do: [:ea | ea first = aSymbol ifTrue: [^ ea second]].
  self error: 'Unrecognized class definition'!