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
Currently, the parser only supports for loops. A simple workaround that does not require to extend the AST would be to transform parsed while loops into for loops of the form for ( ; condition ; ), i.e., without initializer and update statements.
The text was updated successfully, but these errors were encountered:
Currently, the parser only supports
for
loops. A simple workaround that does not require to extend the AST would be to transform parsedwhile
loops intofor
loops of the formfor ( ; condition ; )
, i.e., without initializer and update statements.The text was updated successfully, but these errors were encountered: