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
Fix handling complex expression in for/while/until
The parse_statements method calls
skip_optional_do_after_expression method
in case of for/while/until tokens.
The skip_optional_do_after_expression method uses get_end_token method
for checking end of loop condition expressions,
but it's not correct,
because the end is detected by only
"do" token, newline and semi-colon token.
This commit fixes it.
0 commit comments