The Trunk: System-mt.817.mcz

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

The Trunk: System-mt.817.mcz

commits-2
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.817.mcz

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

Name: System-mt.817
Author: mt
Time: 17 April 2016, 7:47:22.777544 pm
UUID: 9e14c93b-8b3b-4946-a768-2f4eba591f61
Ancestors: System-mt.816

Adds hook for "debug it" to tool set.

=============== Diff against System-mt.816 ===============

Item was added:
+ ----- Method: ToolSet class>>debugMethod:forReceiver:inContext: (in category 'debugging') -----
+ debugMethod: aCompiledMethod forReceiver: anObject inContext: aContext
+
+ self default ifNil:[^ self inform: 'Cannot debug method.'].
+ ^self default debugMethod: aCompiledMethod forReceiver: anObject inContext: aContext
+ !