[squeak-dev] The Trunk: System-cmm.588.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Sep 5 21:09:38 UTC 2013


Chris Muller uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-cmm.588.mcz

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

Name: System-cmm.588
Author: cmm
Time: 5 September 2013, 4:07:58.158 pm
UUID: 62aa5f16-061e-4e35-a7c9-cd0156c3fe42
Ancestors: System-nice.587

Show stores into class-vars from class-side methods, not just instance-side.

=============== Diff against System-nice.587 ===============

Item was changed:
  ----- Method: SystemNavigation>>browseAllStoresInto:from: (in category 'browse') -----
  browseAllStoresInto: varName 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 browseAllStoresInto: 'contents' from: Collection."
  	^ self
+ 		browseMessageList: (self allStoresInto: varName from: aClass), (self allStoresInto: varName from: aClass class)
- 		browseMessageList: (self allStoresInto: varName from: aClass)
  		name: 'Stores into ' , varName
  		autoSelect: varName!



More information about the Squeak-dev mailing list