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 cbee2f7
Show file tree
Hide file tree
Showing 146 changed files with 55,030 additions and 0 deletions.
@@ -0,0 +1,6 @@
export default {
"index": 27,
"lineNumber": 4,
"column": 6,
"message": "Cannot use await in class static initialization block"
};
@@ -0,0 +1,6 @@

class C {
static {
(await => 0);
}
}
@@ -0,0 +1,6 @@
export default {
"index": 32,
"lineNumber": 4,
"column": 11,
"message": "Cannot use await in class static initialization block"
};
@@ -0,0 +1,6 @@

class C {
static {
((x = await) => 0);
}
}
@@ -0,0 +1,6 @@
export default {
"index": 33,
"lineNumber": 4,
"column": 12,
"message": "Cannot use await in class static initialization block"
};
@@ -0,0 +1,6 @@

class C {
static {
(class await {});
}
}
@@ -0,0 +1,6 @@
export default {
"index": 5,
"lineNumber": 2,
"column": 5,
"message": "Cannot use keyword 'await' outside an async function"
};

0 comments on commit cbee2f7

Please sign in to comment.