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
I had a few case statements in my AS3 code that looked like this:
case "somecase": { //trace("my debug output"); } // Fall through intentionally case "someothercase": { //success = true; break; }
expected result
case "somecase", "someothercase": { //success = true; break; }
actual result Conversion crashes - command line says the following:
Uncaught exception - Invalid field access : index
I can get the expected result if I change the original AS3 code to
case "updatedirect": case "update": { //success = true; break; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had a few case statements in my AS3 code that looked like this:
expected result
actual result
Conversion crashes - command line says the following:
I can get the expected result if I change the original AS3 code to
The text was updated successfully, but these errors were encountered: