[squeak-dev] The Trunk: Tools-fbs.479.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jul 5 21:06:56 UTC 2013


Frank Shearar uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-fbs.479.mcz

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

Name: Tools-fbs.479
Author: fbs
Time: 5 July 2013, 10:06:19.632 pm
UUID: fd306163-2434-a54d-8b81-56ae9362760c
Ancestors: Tools-fbs.478

If not Tools, then System might be the right package for inspectors. But definitely not Kernel.

=============== Diff against Tools-fbs.478 ===============

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

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

Item was added:
+ ----- Method: Object>>inspectorClass (in category '*Tools-inspecting') -----
+ inspectorClass
+ 	"Answer the class of the inspector to be used on the receiver.  Called by inspect; 
+ 	use basicInspect to get a normal (less useful) type of inspector."
+ 
+ 	^ Inspector!



More information about the Squeak-dev mailing list