Alexander Lazarević uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-laza.215.mcz==================== Summary ====================
Name: Tools-laza.215
Author: laza
Time: 22 March 2010, 11:49:40.044 am
UUID: 2d079795-21d2-4036-b0d1-68a5e04d2483
Ancestors: Tools-laza.214
Order instance and temp variables alphabetically
=============== Diff against Tools-laza.214 ===============
Item was changed:
----- Method: Inspector>>baseFieldList (in category 'accessing') -----
baseFieldList
"Answer an Array consisting of 'self'
and the instance variable names of the inspected object."
^ (Array with: 'self' with: 'all inst vars')
+ , object class allInstVarNames asSortedArray!
- , object class allInstVarNames!
Item was changed:
----- Method: ContextVariablesInspector>>fieldList (in category 'accessing') -----
fieldList
"Refer to the comment in Inspector|fieldList."
object == nil ifTrue: [^Array with: 'thisContext'].
+ ^fieldList ifNil:[fieldList := (Array with: 'thisContext' with: 'stack top' with: 'all temp vars') , object tempNames asSortedCollection]!
- ^fieldList ifNil:[fieldList := (Array with: 'thisContext' with: 'stack top' with: 'all temp vars') , object tempNames]!