[squeak-dev] The Trunk: System-eem.483.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Apr 30 23:34:47 UTC 2012


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!



More information about the Squeak-dev mailing list