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
The text was updated successfully, but these errors were encountered:
One test case to consider which was raised during the review of the eval implementation (#174) is the following:
var r = function() { return eval('return 1;'); }; try { r(); print("fail"); assert(false); } catch (e) { print(e); assert(e instanceof SyntaxError); }
It prints out the fail message, but a SyntaxError should be thrown. Other engines reports the error with the "return not in function" message.
Sorry, something went wrong.
@galpeter, thank you for the case.
@sand1k please recheck this issue after unicode implementation
sand1k
No branches or pull requests
The text was updated successfully, but these errors were encountered: