[squeak-dev] The Trunk: EToys-mt.457.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 19 10:40:07 UTC 2022


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

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

Name: EToys-mt.457
Author: mt
Time: 19 January 2022, 11:40:02.707855 am
UUID: d954b135-c34e-8e45-8e6c-70c16f5f4b0b
Ancestors: EToys-ct.456

Fixes GetText export: "withCRs translated" -> "translated withCRs"

=============== Diff against EToys-ct.456 ===============

Item was changed:
  ----- Method: EtoysDebugger>>evaluateNextTile (in category 'evaluating') -----
  evaluateNextTile
+       (scriptEditor isTextuallyCoded) ifTrue:[^ self inform: 'You can''t step through textually coded scripts.\Use a script''s tile-based representation instead.' translated withCRs].
-       (scriptEditor isTextuallyCoded) ifTrue:[^ self inform: 'You can''t step through textually coded scripts.\Use a script''s tile-based representation instead.' withCRs translated].
  	[next = (scriptEditor tiles at: 1 ifAbsent: [nil])
  		ifTrue: ["We are about to evaluate the first tile"
  			self updateStartingPosition].
  	(self trailMorph ifNotNil: #batchPenTrails ifNil: [false])
  		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