[squeak-dev] The Trunk: Kernel-mt.1268.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Sep 17 07:20:05 UTC 2019


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.!



More information about the Squeak-dev mailing list