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
Resulting in exceptions hard to track down. Like this: ReferenceError: "foobar" is not defined <function> 3.
ReferenceError: "foobar" is not defined <function> 3
Using Nashorn's load() instead of new Function might be a solution:
load()
new Function
load({name:"script.js", script:"var x = 1 + 1; x;"})
The text was updated successfully, but these errors were encountered:
Yeah, this kinda blows. Any way to get better stack traces out of this?
Sorry, something went wrong.
No branches or pull requests
Resulting in exceptions hard to track down. Like this:
ReferenceError: "foobar" is not defined <function> 3
.Using Nashorn's
load()
instead ofnew Function
might be a solution:The text was updated successfully, but these errors were encountered: