mirror of https://github.com/tc39/test262.git
Fix features flags
This commit is contained in:
parent
2b0a8cc1c4
commit
26b0437c4f
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-functions]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
{ async function f() {} /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-iteration]
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
{ async function* f() {} /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-functions]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
switch (0) { case 1: async function f() {} default: /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-iteration]
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
switch (0) { case 1: async function* f() {} default: /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-functions]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
{ async function f() {} /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-iteration]
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
{ async function* f() {} /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-functions]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
switch (0) { case 1: async function f() {} default: /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-iteration]
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
switch (0) { case 1: async function* f() {} default: /*{ body }*/ }
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
desc: >
|
||||
redeclaration with AsyncFunctionDeclaration
|
||||
template: redeclare
|
||||
flags: [async-functions]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
//- body
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
desc: >
|
||||
redeclaration with AsyncGeneratorDeclaration
|
||||
template: redeclare
|
||||
flags: [async-iteration]
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
//- body
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-functions]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
{ async function f() {} /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-iteration]
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
{ async function* f() {} /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-functions]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
switch (0) { case 1: async function f() {} default: /*{ body }*/ }
|
||||
|
|
|
@ -13,7 +13,7 @@ info: |
|
|||
negative:
|
||||
phase: early
|
||||
type: SyntaxError
|
||||
flags: [async-iteration]
|
||||
features: [async-iteration]
|
||||
---*/
|
||||
|
||||
switch (0) { case 1: async function* f() {} default: /*{ body }*/ }
|
||||
|
|
Loading…
Reference in New Issue