If you are debugging code in topaz that contains an interval #do: loop like the following:
. . .
(1 to: 3) do: [ ... loop code ... ].
... subsequent code ...
And step through the loop code using the topaz command "step thru", at the end of the loop code, rather than stepping into the subsequent code you will instead complete execution of the subsequent code without stopping.
Replace interval #do: loops like:
(1 to: 3) do: [ ... ]
with a #to:do: loop like:
1 to: 3 do: [ ... ]
Last updated: 9/2/15