[squeak-dev] The Trunk: System-mt.826.mcz

commits at source.squeak.org commits at source.squeak.org
Mon May 9 11:15:09 UTC 2016


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

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

Name: System-mt.826
Author: mt
Time: 9 May 2016, 1:14:47.861723 pm
UUID: ec4d495c-324c-214f-9944-0e2be7e78ec6
Ancestors: System-mt.825

Return the result of a debug-it for further processing.

=============== Diff against System-mt.825 ===============

Item was changed:
  ----- Method: Project>>debugMethod:forReceiver:inContext: (in category 'debugging') -----
  debugMethod: aCompiledMethod forReceiver: anObject inContext: aContextOrNil
  	"Just execute the method and return the result. We cannot know how interactive debugging works for arbitrary projects."
  	
+ 	^ aCompiledMethod
- 	aCompiledMethod
  		valueWithReceiver: anObject
  		 arguments: (aContextOrNil
  							ifNil: [#()]
+ 							ifNotNil: [{aContextOrNil}])!
- 							ifNotNil: [{aContextOrNil}]).!



More information about the Squeak-dev mailing list