forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle private access chained on an optional chain
See the resolution from tc39/proposal-class-fields#301.
- Loading branch information
1 parent
f9d4b79
commit d3ee602
Showing
116 changed files
with
2,935 additions
and
178 deletions.
There are no files selected for viewing
8 changes: 1 addition & 7 deletions
8
packages/babel-cli/test/fixtures/babel/--copy-files with ignore in babelignore/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
{ | ||
"args": [ | ||
"src", | ||
"--out-dir", | ||
"lib", | ||
"--copy-files", | ||
"--verbose" | ||
] | ||
"args": ["src", "--out-dir", "lib", "--copy-files", "--verbose"] | ||
} |
8 changes: 1 addition & 7 deletions
8
packages/babel-cli/test/fixtures/babel/--copy-files with ignore in babelrc/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
{ | ||
"args": [ | ||
"src", | ||
"--out-dir", | ||
"lib", | ||
"--copy-files", | ||
"--verbose" | ||
] | ||
"args": ["src", "--out-dir", "lib", "--copy-files", "--verbose"] | ||
} |
8 changes: 7 additions & 1 deletion
8
packages/babel-cli/test/fixtures/babel/--minified/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
{ | ||
"args": ["--out-file", "script2.js", "--no-comments", "--minified", "script.js"] | ||
"args": [ | ||
"--out-file", | ||
"script2.js", | ||
"--no-comments", | ||
"--minified", | ||
"script.js" | ||
] | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
4 changes: 1 addition & 3 deletions
4
.../babel-parser/test/fixtures/es2020/nullish-coalescing-operator/with-pipeline/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
{ | ||
"plugins": [ | ||
["pipelineOperator", { "proposal": "minimal" }] | ||
] | ||
"plugins": [["pipelineOperator", { "proposal": "minimal" }]] | ||
} |
2 changes: 1 addition & 1 deletion
2
...ures/experimental/class-private-names-duplicated/instance-field-instance-get/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...s/experimental/class-private-names-duplicated/instance-field-instance-method/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...ures/experimental/class-private-names-duplicated/instance-field-instance-set/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...ures/experimental/class-private-names-duplicated/instance-field-static-field/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...xtures/experimental/class-private-names-duplicated/instance-field-static-get/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...res/experimental/class-private-names-duplicated/instance-field-static-method/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...xtures/experimental/class-private-names-duplicated/instance-field-static-set/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...ures/experimental/class-private-names-duplicated/instance-get-instance-field/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...xtures/experimental/class-private-names-duplicated/instance-get-instance-get/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...res/experimental/class-private-names-duplicated/instance-get-instance-method/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...xtures/experimental/class-private-names-duplicated/instance-get-static-field/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...fixtures/experimental/class-private-names-duplicated/instance-get-static-get/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...tures/experimental/class-private-names-duplicated/instance-get-static-method/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...fixtures/experimental/class-private-names-duplicated/instance-get-static-set/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...s/experimental/class-private-names-duplicated/instance-method-instance-field/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...res/experimental/class-private-names-duplicated/instance-method-instance-get/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
.../experimental/class-private-names-duplicated/instance-method-instance-method/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...res/experimental/class-private-names-duplicated/instance-method-instance-set/options.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"plugins": ["classPrivateProperties", "classPrivateMethods"] | ||
} | ||
} |
Oops, something went wrong.