Alexander Lazarević uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-laza.216.mcz==================== Summary ====================
Name: Tools-laza.216
Author: laza
Time: 22 March 2010, 12:13:25.464 pm
UUID: e5e87360-399c-4b31-a0f3-7918e160e4f1
Ancestors: Tools-laza.215
reverting last change
=============== Diff against Tools-laza.215 ===============
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!
- , object class allInstVarNames asSortedArray!
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]!
- ^fieldList ifNil:[fieldList := (Array with: 'thisContext' with: 'stack top' with: 'all temp vars') , object tempNames asSortedCollection]!