The Trunk: Kernel-fbs.781.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Kernel-fbs.781.mcz

commits-2
Frank Shearar uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-fbs.781.mcz

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

Name: Kernel-fbs.781
Author: fbs
Time: 5 July 2013, 10:07:04.479 pm
UUID: db701432-13f0-0145-88ee-3c59cdd5b25b
Ancestors: Kernel-fbs.780

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

=============== Diff against Kernel-fbs.780 ===============

Item was removed:
- ----- Method: Object>>basicInspect (in category '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 removed:
- ----- Method: Object>>inspect (in category 'inspecting') -----
- inspect
- "Create and schedule an Inspector in which the user can examine the receiver's variables."
- ToolSet inspect: self!

Item was removed:
- ----- Method: Object>>inspectorClass (in category '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!