The Trunk: CommandLine-mt.15.mcz

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

The Trunk: CommandLine-mt.15.mcz

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

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

Name: CommandLine-mt.15
Author: mt
Time: 7 October 2019, 10:13:53.665231 am
UUID: bf62f008-e29e-f94a-907b-d6e5ab408d73
Ancestors: CommandLine-mt.14

Complements System-mt.1112, which fixes and clean-up in the debugger infrastructure.

=============== Diff against CommandLine-mt.14 ===============

Item was added:
+ ----- Method: CommandLineToolSet class>>debugException: (in category 'debugging') -----
+ debugException: anException
+
+ "Ignore."!

Item was removed:
- ----- Method: CommandLineToolSet class>>debugMethod:forReceiver:inContext: (in category 'debugging') -----
- debugMethod: aCompiledMethod forReceiver: anObject inContext: aContext
- "We can't open a command line debugger, so just log the event, run that method, and carry on."
-
- FileStream stderr
- nextPutAll: self className;
- nextPutAll: ': Debug Method';
- cr;
- nextPutAll: aCompiledMethod getSource asString;
- cr;
- nextPutAll: anObject printString;
- cr;
- nextPutAll: aContext printString;
- flush.
-
- aCompiledMethod
- valueWithReceiver: anObject
- arguments: (aContext ifNil: [#()] ifNotNil: [{aContext}]).!