Skip to content

Commit

Permalink
Chore: add class static blocks tests
Browse files Browse the repository at this point in the history
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
aladdin-add committed Sep 16, 2021
1 parent 54ed0c0 commit 47b514a
Show file tree
Hide file tree
Showing 146 changed files with 55,087 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
"index": 26,
"lineNumber": 3,
"column": 6,
"message": "Cannot use await in class static initialization block"
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class C {
static {
(await => 0);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
"index": 31,
"lineNumber": 3,
"column": 11,
"message": "Cannot use await in class static initialization block"
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class C {
static {
((x = await) => 0);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
"index": 32,
"lineNumber": 3,
"column": 12,
"message": "Cannot use await in class static initialization block"
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class C {
static {
(class await {});
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
"index": 6,
"lineNumber": 3,
"column": 5,
"message": "Cannot use keyword 'await' outside an async function"
};
Loading

0 comments on commit 47b514a

Please sign in to comment.