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

commits at source.squeak.org commits at source.squeak.org
Fri Feb 21 16:11:46 UTC 2020


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

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

Name: Kernel-mt.1304
Author: mt
Time: 21 February 2020, 5:11:43.939367 pm
UUID: 537e696d-35de-d44e-9f51-8c11ef2dd73c
Ancestors: Kernel-mt.1303

Fix that debugger output of the ObjectTracer.

=============== Diff against Kernel-mt.1303 ===============

Item was changed:
  ----- Method: ObjectTracer>>doesNotUnderstand: (in category 'very few messages') -----
  doesNotUnderstand: aMessage 
  	"Present a debugger before proceeding to re-send the message"
  
  	"All external messages (those not caused by the re-send) get trapped here"
+ 	Processor activeProcess
+ 		debugWithTitle: 'Object Tracer (', self identityHash, ')'
+ 		full: false
+ 		contents: ('On an instance of\	{1} ({2})\\About to perform\	{3}\\Using the following arguments\	{4}' translated withCRs
+ 			format: {
+ 				thisContext objectClass: tracedObject.
+ 				tracedObject identityHash.
+ 				aMessage selector storeString.
+ 				aMessage arguments printString}).
+ 		
- 	Warning signal: ('About to perform: {1}' translated format: {aMessage selector storeString}).
  	^ aMessage sendTo: tracedObject!



More information about the Squeak-dev mailing list