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
For example:
let x; function f() { { let x; x; // 1 with (o) { x; // 2 } } eval(s); x; // 3 }
would mark 1 as passing through no dynamic scopes, would mark 2 as passing through the with, and would mark 3 as passing through the function.
1
2
with
3
The text was updated successfully, but these errors were encountered:
Can't this already be derived?
Sorry, something went wrong.
Not trivially, especially when the dynamism comes from a sloppy direct eval.
eval
No branches or pull requests
For example:
would mark
1
as passing through no dynamic scopes, would mark2
as passing through thewith
, and would mark3
as passing through the function.The text was updated successfully, but these errors were encountered: