fix(class-properties): replace new.target in static properties with undefined#13560
Merged
JLHwung merged 7 commits intobabel:mainfrom Jul 16, 2021
colinaaa:fix-new-target-in-static-props
Merged
fix(class-properties): replace new.target in static properties with undefined#13560JLHwung merged 7 commits intobabel:mainfrom colinaaa:fix-new-target-in-static-props
new.target in static properties with undefined#13560JLHwung merged 7 commits intobabel:mainfrom
colinaaa:fix-new-target-in-static-props
Conversation
… `undefined` non-static prop is not affected fix #12737
Collaborator
|
Build successful! You can test your changes in the REPL here: https://babeljs.io/repl/build/47387/ |
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit f5cbf58:
|
packages/babel-helper-create-class-features-plugin/src/fields.ts
Outdated
Show resolved
Hide resolved
packages/babel-plugin-transform-new-target/test/fixtures/general/class-properties/options.json
Show resolved
Hide resolved
fix typo Co-authored-by: Brian Ng <bng412@gmail.com>
packages/babel-helper-create-class-features-plugin/src/fields.ts
Outdated
Show resolved
Hide resolved
Contributor
|
We can now enable tests |
defaults to replace new.target, do not replace within function
packages/babel-helper-create-class-features-plugin/src/fields.ts
Outdated
Show resolved
Hide resolved
remove function visitor since environmentVisitor is skipping arrow function
nicolo-ribaudo
approved these changes
Jul 16, 2021
| var _class, _temp; | ||
|
|
||
| this.Foo = (_temp = _class = class {}, (() => { | ||
| // fixme: new.target should be undefined after transformed |
Member
There was a problem hiding this comment.
Nit: you can delete this comment from input.js
existentialism
approved these changes
Jul 16, 2021
nicolo-ribaudo
pushed a commit
to nicolo-ribaudo/babel
that referenced
this pull request
Jul 30, 2021
… `undefined` (babel#13560) * fix(class-properties): replace `new.target` in static properties with `undefined` non-static prop is not affected fix babel#12737 * Update packages/babel-helper-create-class-features-plugin/src/fields.ts fix typo Co-authored-by: Brian Ng <bng412@gmail.com> * fix: add loose test case and fix replace condition * test: add new.target tests for static block * feat: move new-target replace into thisContextVisitor defaults to replace new.target, do not replace within function * feat: simplify thisContextVisitor remove function visitor since environmentVisitor is skipping arrow function * test: remove unused fixme comments Co-authored-by: Brian Ng <bng412@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When we meet a static class property, we traverse to visit all
new.targetwith aMetaPropertyvisitor.Then we find out if or not this
new.targetis associated with a class by:Now, if
funcis a child ofprop, we do nothing. If not, that meansnew.targetnow is leaked to uppernew.target, we just replace it byundefined/void 0.