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

commits at source.squeak.org commits at source.squeak.org
Sun Aug 18 09:41:53 UTC 2019


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

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

Name: EToys-kfr.347
Author: kfr
Time: 18 August 2019, 11:41:13.596323 am
UUID: 76127dd0-7463-ef43-a54a-777573d0d59b
Ancestors: EToys-kfr.346

Spelin eror

=============== Diff against EToys-kfr.346 ===============

Item was changed:
  ----- Method: EtoysDebugger>>evaluateNextTile (in category 'evaluating') -----
  evaluateNextTile
+       (scriptEditor isTextuallyCoded) ifTrue:[^self inform:'You cant step through textually coded scripts'].
-       (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