The Trunk: Kernel-mt.1268.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-mt.1268.mcz

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

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

Name: Kernel-mt.1268
Author: mt
Time: 17 September 2019, 9:20:01.151406 am
UUID: 34e022b5-cd85-4041-96d0-080a3df4e866
Ancestors: Kernel-mt.1267

Complements EToys-mt.354.

=============== Diff against Kernel-mt.1267 ===============

Item was changed:
  ----- Method: Process>>debug:title:full: (in category 'debugging') -----
  debug: context title: title full: bool
- "Open debugger on self with context shown on top"
 
+ self
+ debug: context
+ title: title
+ full: bool
+ contents: nil!
- | topCtxt |
- topCtxt := self isActiveProcess ifTrue: [thisContext] ifFalse: [self suspendedContext].
- (topCtxt hasContext: context) ifFalse: [^ self error: 'context not in process'].
- ToolSet debug: self context: context label: title contents: nil fullView: bool.
- !

Item was added:
+ ----- Method: Process>>debug:title:full:contents: (in category 'debugging') -----
+ debug: context title: title full: bool contents: contents
+ "Open debugger on self with context shown on top"
+
+ | topCtxt |
+ topCtxt := self isActiveProcess ifTrue: [thisContext] ifFalse: [self suspendedContext].
+ (topCtxt hasContext: context) ifFalse: [^ self error: 'context not in process'].
+ ToolSet debug: self context: context label: title contents: contents fullView: bool.!