[squeak-dev] The Trunk: Tools-nice.510.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 16 15:28:27 UTC 2013


Nicolas Cellier uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-nice.510.mcz

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

Name: Tools-nice.510
Author: nice
Time: 16 December 2013, 4:27:44.258 pm
UUID: 106690ae-0e4e-42d0-96cd-9ee6d3b0de3e
Ancestors: Tools-cmm.509

Use non logging Compiler protocol rather than providing a logged: false argument.

=============== Diff against Tools-cmm.509 ===============

Item was changed:
  ----- Method: Debugger>>runUntil (in category 'code pane menu') -----
  runUntil
  	"Step until an expression evaluates to other than false, reporting an error if it doesn't evaluate to true.
  	 Remember the expression in an inst var.  If shift is pressed when the expression is supplied, don't update the UI.
  	 If shift is pressed while stepping, stop stepping.  Using a user interrupt to break out would be more natural
  	 but Squeak currently doesn't provide a UserInterrupt expection.  It should do."
  	| expression receiver context method value lastUpdate updateUI breakOnShift |
  	expression := UIManager default 
  					request: 'run until expression is true (shift to disable ui update; shift to break).'
  					initialAnswer: (untilExpression ifNil: 'boolean expression').
  	(expression isNil or: [expression isEmpty]) ifTrue:
  		[^self].
  	updateUI := breakOnShift := Sensor shiftPressed not.
  	untilExpression := expression.
  	context := self selectedContext.
  	receiver := context receiver.
  	method := receiver class evaluatorClass new 
  				compiledMethodFor: untilExpression
  				in: context
  				to: receiver
  				notifying: nil
+ 				ifFail: [^ #failedDoit].
- 				ifFail: [^ #failedDoit]
- 				logged: false.
  
  	lastUpdate := Time millisecondClockValue.
  	Cursor execute showWhile:
  		[[self selectedContext == context
  		  and: [(value := receiver with: context executeMethod: method) == false]] whileTrue:
  			[interruptedProcess completeStep: self selectedContext.
  			 self selectedContext == context ifTrue:
  				[self resetContext: interruptedProcess stepToSendOrReturn changeContents: false].
  			 Time millisecondClockValue - lastUpdate > 50 ifTrue:
  				[updateUI ifTrue:
  					[self changed: #contentsSelection.
  					 World displayWorldSafely].
  				 breakOnShift
  					ifTrue: [Sensor shiftPressed ifTrue:
  								[self changed: #contentsSelection.
  								 self updateInspectors.
  								 ^self]]
  					ifFalse: [Sensor shiftPressed ifFalse: [breakOnShift := true]].
  				 lastUpdate := Time millisecondClockValue]]].
  	self changed: #contentsSelection.
  	self updateInspectors.
  	(value ~~ false and: [value ~~ true]) ifTrue:
  		[UIManager default inform: 'expression ', (untilExpression contractTo: 40), ' answered ', (value printString contractTo: 20), '!!!!']!



More information about the Squeak-dev mailing list