We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if (x); else if (y) { haha } else ;
the transformation will cause unexpected token else
unexpected token else
{ $statement$(0, 0); if ($expression$(0, 3, (x)))$statement$(0, 5); ; else { $statement$(0, 9); if ($expression$(0, 12, (y))) { $statement$(0, 15); { $expression$(0, 19, (haha)) ;$statement$(0, 22); } } else $statement$(0, 26); ; } }
floops
The text was updated successfully, but these errors were encountered:
Actually it's due to the semi statement :s
if (a); else b;
=>
{ $statement$(0, 8); if ($expression$(0, 11, (a)))$statement$(0, 13); ; else $expression$(0, 25, (b)); }
Sorry, something went wrong.
No branches or pull requests
the transformation will cause
unexpected token else
floops
The text was updated successfully, but these errors were encountered: