[squeak-dev] The Trunk: CommandLine-mt.15.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Oct 7 08:13:53 UTC 2019


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}]).!



More information about the Squeak-dev mailing list