-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
feat(es/parser): Implement explicit resource management #7322
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
swc-bump:
- swc_atoms
- swc_ecma_ast --breaking
@@ -870,8 +870,8 @@ XPathExpression | |||
XPathResult | |||
XSLTProcessor | |||
__proto__ | |||
_define_property | |||
_defineProperty |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it safe to remove _defineProperty
now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically it's a breaking change because js_word!("_defineProperty")
will not compile anymore, but I think it's fine.
4adcc95
to
52e6c60
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Automated review comment generated by auto-rebase script
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Automated review comment generated by auto-rebase script
Stumbled upon this PR after updating swc and wondering what |
Description:
UsingDecl
.UsingDecl
toDecl
.VarDeclOrPat
toForHead
.UsingDecl
toForHead
.Related issue: