[squeak-dev] The Inbox: Tools-cmm.626.mcz

commits at source.squeak.org commits at source.squeak.org
Wed May 20 19:39:50 UTC 2015


Chris Muller uploaded a new version of Tools to project The Inbox:
http://source.squeak.org/inbox/Tools-cmm.626.mcz

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

Name: Tools-cmm.626
Author: cmm
Time: 20 May 2015, 2:39:34.146 pm
UUID: 14025f66-843c-41dd-8458-de2eccce1166
Ancestors: Tools-mt.625

- Let ToolBuilder open any kind of Object with a consistent API, #open.  Objects are opened with an Inspector by default, subclasses may override.
- Restore the consistency of #inspect relative to other Smalltalks.

=============== Diff against Tools-mt.625 ===============

Item was changed:
  ----- Method: Object>>inspect (in category '*Tools-inspecting') -----
  inspect
+ 	"Open an Inspector in which the user can examine and change the receiver's variables, and send messages."
+ 	self open!
- 	"Create and schedule an Inspector in which the user can examine the receiver's variables."
- 	^ ToolSet inspect: self!

Item was added:
+ ----- Method: Object>>open (in category '*Tools-inspecting') -----
+ open
+ 	"Create and schedule an Inspector in which the user can examine the receiver's variables."
+ 	^ ToolSet inspect: self!



More information about the Squeak-dev mailing list