The Trunk: 60Deprecated-mt.49.mcz

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

The Trunk: 60Deprecated-mt.49.mcz

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

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

Name: 60Deprecated-mt.49
Author: mt
Time: 17 September 2019, 12:15:46.753406 pm
UUID: 3b1d8a5c-2378-d845-bca2-af5543b0ac29
Ancestors: 60Deprecated-mt.48

Refactoring of process debugging. Complements System-mt.1093

=============== Diff against 60Deprecated-mt.48 ===============

Item was added:
+ ----- Method: Debugger class>>context: (in category '*60Deprecated-opening') -----
+ context: aContext
+
+ self deprecated.
+
+ ^ self
+ openOn: Processor activeProcess
+ context: aContext
+ label: 'Debug'
+ contents: nil
+ fullView: false!

Item was added:
+ ----- Method: Debugger class>>openContext:label:contents: (in category '*60Deprecated-opening') -----
+ openContext: aContext label: aString contents: contentsStringOrNil
+
+ self deprecated.
+
+ ^ self
+ openOn: Processor activeProcess
+ context: aContext
+ label: aString
+ contents: contentsStringOrNil
+ fullView: false
+ !

Item was added:
+ ----- Method: StandardToolSet class>>debug:context:label:contents:fullView: (in category '*60Deprecated-debugging') -----
+ debug: aProcess context: aContext label: aString contents: contents fullView: aBool
+
+ self deprecated.
+ ^ self debugProcess: aProcess context: aContext label: aString contents: contents fullView: aBool!

Item was added:
+ ----- Method: StandardToolSet class>>debugContext:label:contents: (in category '*60Deprecated-debugging') -----
+ debugContext: aContext label: aString contents: contents
+
+ self deprecated.
+ ^ self debugProcess: Processor activeProcess context: aContext label: aString contents: contents fullView: false!

Item was added:
+ ----- Method: StandardToolSet class>>debugError: (in category '*60Deprecated-debugging') -----
+ debugError: anError
+
+ self deprecated.
+ ^ self handleError: anError!

Item was added:
+ ----- Method: StandardToolSet class>>interrupt:label: (in category '*60Deprecated-debugging') -----
+ interrupt: aSuspendedProcess label: aString
+
+ self deprecated: 'For a running process, use #handleUserInterrupt:. For a suspended process, use #debugInterruptedProcess: label: isntead.'.
+
+ self debugInterruptedProcess: aSuspendedProcess label: aString.!

Item was added:
+ ----- Method: ToolSet class>>debug:context:label:contents:fullView: (in category '*60Deprecated-debugging') -----
+ debug: aProcess context: aContext label: aString contents: contents fullView: aBool
+
+ self deprecated.
+ ^ self debugProcess: aProcess context: aContext label: aString contents: contents fullView: aBool!

Item was added:
+ ----- Method: ToolSet class>>debugContext:label:contents: (in category '*60Deprecated-debugging') -----
+ debugContext: aContext label: aString contents: contents
+
+ self deprecated.
+ ^ self debugActiveProcessContext: aContext label: aString contents: contents!

Item was added:
+ ----- Method: ToolSet class>>debugError: (in category '*60Deprecated-debugging') -----
+ debugError: anUnhandledError
+
+ self deprecated.
+ ^ self handleError: anUnhandledError!

Item was added:
+ ----- Method: ToolSet class>>interrupt:label: (in category '*60Deprecated-debugging') -----
+ interrupt: aProcess label: aString
+
+ self deprecated: 'For a running process, use the Project interface. For a suspended process, use #debugInterruptedProcess: label: isntead.'.
+
+ self debugInterruptedProcess: aProcess label: aString.!