The Trunk: EToys-kfr.346.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-kfr.346.mcz

commits-2
Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/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]
 
  !