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
no-this-before-super
https://github.com/rzvxa/oxlint-ecosystem-ci/actions/runs/9511509383/job/26217870705#step:5:66
eg:
function f() { try { return a(); } catch (err) { throw new class CustomError extends Error { constructor() { super(err); } }; } finally { this.b(); } }
The text was updated successfully, but these errors were encountered:
NewFunction
fix(semantic/cfg): discrete finalization path after NewFunctions. (#…
abd6ac8
…3671) closes #3668 [oxlint-ecosystem-ci](https://github.com/rzvxa/oxlint-ecosystem-ci/actions/runs/9512489987/job/26220576138) For this code: ```js function f() { try { return a(); } catch (err) { throw new class CustomError extends Error { constructor() { super(err); } }; } finally { this.b(); } } ``` We went from this: ![image](https://github.com/oxc-project/oxc/assets/3788964/bcb751aa-50cf-4c0a-8975-e01697ff78b2) To this: ![Screenshot 2024-06-14 110805](https://github.com/oxc-project/oxc/assets/3788964/03a03525-5326-47b1-8d6c-69720f7f3149)
rzvxa
Successfully merging a pull request may close this issue.
https://github.com/rzvxa/oxlint-ecosystem-ci/actions/runs/9511509383/job/26217870705#step:5:66
eg:
The text was updated successfully, but these errors were encountered: