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
When compiling optional chaining, patterns like this:
class Foo { bar() { super.bar?.(); } }
It gets compiled to:
class Foo { bar() { var _a, _b; (_b = (_a = super).bar) == null ? void 0 : _b.call(_a); } }
This is invalid javascript, in Chrome I get: Uncaught SyntaxError: 'super' keyword unexpected here.
Uncaught SyntaxError: 'super' keyword unexpected here
See https://repl.it/repls/RawHandyFormats for a reproduction.
The text was updated successfully, but these errors were encountered:
df3c540
No branches or pull requests
When compiling optional chaining, patterns like this:
It gets compiled to:
This is invalid javascript, in Chrome I get:
Uncaught SyntaxError: 'super' keyword unexpected here
.See https://repl.it/repls/RawHandyFormats for a reproduction.
The text was updated successfully, but these errors were encountered: