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
addInitializer
Version: Deno 1.40.3
let addInitializer; function dec(_, ctx) { throw { addInitializer } = ctx; } try { class A { @dec m() {} } } catch {} addInitializer(() => {});
The addInitializer(() => {}) call should not throw according to the proposal spec, but it does in Deno.
addInitializer(() => {})
The text was updated successfully, but these errors were encountered:
Possibly related to swc-project/swc#8525
Sorry, something went wrong.
No this is different :) (but that issue seems to be about the same as #22253).
In this case the function is present, but it doesn't behave properly.
Ooops, thanks!
Upstream: swc-project/swc#9078
No branches or pull requests
Version: Deno 1.40.3
The
addInitializer(() => {})
call should not throw according to the proposal spec, but it does in Deno.The text was updated successfully, but these errors were encountered: