The Trunk: Monticello-ar.391.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-ar.391.mcz

commits-2
Andreas Raab uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-ar.391.mcz

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

Name: Monticello-ar.391
Author: ar
Time: 21 April 2010, 8:55:24.061 pm
UUID: 2a0c2035-d434-fb4f-8d41-7543144e0e51
Ancestors: Monticello-bf.390, Monticello-hmm.388

Merging Monticello-hmm.388:

MCSnapshotBrowser>>allClassNames would incorrectly list the classes of script definitions if a package contains preamble or postscript.

=============== Diff against Monticello-bf.390 ===============

Item was changed:
  ----- Method: MCSnapshotBrowser>>allClassNames (in category 'accessing') -----
  allClassNames
  ^ (items
+ select: [:ea | (ea isOrganizationDefinition | ea isScriptDefinition) not]
- select: [:ea | ea isOrganizationDefinition not]
  thenCollect: [:ea | ea className]) asSet.
  !