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 class static blocks proposal introduces a new lexical scope nested within a class body:
class
class C { static { throw new Error("foo"); } }
[email protected] has implemented this (currently) Stage 3 proposal. playground
[email protected]
We should investigate what changes, if any, need to be made to pasta to support this feature.
This currently shows in Chrome console:
VM56:3 Uncaught Error: foo at <static_initializer> (<anonymous>:3:15) at <anonymous>:1:1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The class static blocks proposal introduces a new lexical scope nested within a
class
body:[email protected]
has implemented this (currently) Stage 3 proposal. playgroundWe should investigate what changes, if any, need to be made to pasta to support this feature.
This currently shows in Chrome console:
The text was updated successfully, but these errors were encountered: