You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each of the following expressions, evaluated in a fresh Worksheet, errors out with a stack trace starting with scala.MatchError. As far as I can tell, each should be valid CGScript syntax:
def foo() begin return 42; end
for i from 1 to 5 do if i == 3 then continue; end System.Print(i); end
for i from 1 to 5 do if i == 3 then break; end System.Print(i); end
The text was updated successfully, but these errors were encountered:
puleo1
changed the title
"return", "continue", "break" cause crashes in 2.1.1
"return", "continue", "break" cause scala errors in 2.1.1
Mar 24, 2024
Each of the following expressions, evaluated in a fresh Worksheet, errors out with a stack trace starting with
scala.MatchError
. As far as I can tell, each should be valid CGScript syntax:The text was updated successfully, but these errors were encountered: