-
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: add class static blocks tests
acorn has been upgraded in ee1d3ec, this commit simply added some tests. The tests were copied from test262, refs: tc39/test262@afe217b
- Loading branch information
1 parent
54ed0c0
commit cbee2f7
Showing
146 changed files
with
55,030 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
...ion/13/class-static-blocks/expressions-arrow-function-static-init-await-binding.result.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
"index": 27, | ||
"lineNumber": 4, | ||
"column": 6, | ||
"message": "Cannot use await in class static initialization block" | ||
}; |
6 changes: 6 additions & 0 deletions
6
...ersion/13/class-static-blocks/expressions-arrow-function-static-init-await-binding.src.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
class C { | ||
static { | ||
(await => 0); | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
...n/13/class-static-blocks/expressions-arrow-function-static-init-await-reference.result.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
"index": 32, | ||
"lineNumber": 4, | ||
"column": 11, | ||
"message": "Cannot use await in class static initialization block" | ||
}; |
6 changes: 6 additions & 0 deletions
6
...sion/13/class-static-blocks/expressions-arrow-function-static-init-await-reference.src.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
class C { | ||
static { | ||
((x = await) => 0); | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
...ecma-version/13/class-static-blocks/expressions-class-static-init-await-binding.result.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
"index": 33, | ||
"lineNumber": 4, | ||
"column": 12, | ||
"message": "Cannot use await in class static initialization block" | ||
}; |
6 changes: 6 additions & 0 deletions
6
...es/ecma-version/13/class-static-blocks/expressions-class-static-init-await-binding.src.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
class C { | ||
static { | ||
(class await {}); | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
...ion/13/class-static-blocks/expressions-class-static-init-await-reference.module-result.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
"index": 5, | ||
"lineNumber": 2, | ||
"column": 5, | ||
"message": "Cannot use keyword 'await' outside an async function" | ||
}; |
Oops, something went wrong.