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
Currently, the Switch Executable implementation at doesn't support break statements as part of a switch statement.
Example code
let a = "A"; let b = "B"; let c = "hi"; switch (c) { case 'hi': a = 'hi'; break; case 'hi': b = 'hi'; break; } console.log(a); console.log(b);
The expected output is: 'hi' 'B'
Note that the code above won't work until issue #301 is also resolved.
The text was updated successfully, but these errors were encountered:
run()
I can do this as an extension to PR #422
Sorry, something went wrong.
Sure, go ahead!
Lan2u
Successfully merging a pull request may close this issue.
Currently, the Switch Executable implementation at doesn't support break statements as part of a switch statement.
Example code
The expected output is:
'hi'
'B'
Note that the code above won't work until issue #301 is also resolved.
The text was updated successfully, but these errors were encountered: