[squeak-dev] The Inbox: EToys-kfr.346.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Aug 18 09:39:22 UTC 2019


A new version of EToys was added to project The Inbox:
http://source.squeak.org/inbox/EToys-kfr.346.mcz

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

Name: EToys-kfr.346
Author: kfr
Time: 18 August 2019, 11:39:01.217323 am
UUID: 5cf365e7-d7c7-a544-87bd-8cbcdbe3398a
Ancestors: EToys-mt.345

Textually coded etoy scripts does not work with the etoys debugger

=============== Diff against EToys-mt.345 ===============

Item was changed:
  ----- Method: EtoysDebugger>>evaluateNextTile (in category 'evaluating') -----
  evaluateNextTile
+       (scriptEditor isTextuallyCoded) ifTrue:[^self inform:'You cant step through textally coded scripts'].
  	[next = (scriptEditor tiles at: 1 ifAbsent: [nil])
  		ifTrue: ["We are about to evaluate the first tile"
  			self updateStartingPosition].
  	self trailMorph batchPenTrails
  		ifTrue: [self evaluateNextTileWithBatchPenTrails]
  		ifFalse: [next evaluateOn: self]]
  		on: Error do: [:err || newNext |
  			newNext := scriptEditor tiles at: 1 ifAbsent: [^ self].
  			newNext = next
  				ifTrue: [err pass]
  				ifFalse: [next := newNext].
  			self evaluateNextTile]
  
  !



More information about the Squeak-dev mailing list