The Trunk: System-eem.483.mcz

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

The Trunk: System-eem.483.mcz

commits-2
Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.483.mcz

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

Name: System-eem.483
Author: eem
Time: 30 April 2012, 4:34:10.236 pm
UUID: 597c950a-a419-4668-a234-cb1ffd613232
Ancestors: System-eem.482

Sort the results of browse references... for inst vars.

=============== Diff against System-eem.482 ===============

Item was changed:
  ----- Method: SystemNavigation>>browseAllAccessesTo:from: (in category 'browse') -----
  browseAllAccessesTo: instVarName from: aClass
  "Create and schedule a Message Set browser for all the receiver's methods or any methods of a subclass/superclass that refer to the instance variable name."
  "self new browseAllAccessesTo: 'contents' from: Collection."
 
  ^ self
+ browseMessageList: [ (self allAccessesTo: instVarName from: aClass) sort ]
- browseMessageList: [ self allAccessesTo: instVarName from: aClass ]
  name: 'Accesses to ' , instVarName
  autoSelect: instVarName!