Fix features flags

This commit is contained in:
Leo Balter 2017-05-16 17:31:32 -04:00
parent 2b0a8cc1c4
commit 26b0437c4f
No known key found for this signature in database
GPG Key ID: 2C75F319D398E36B
14 changed files with 14 additions and 14 deletions

View File

@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
flags: [async-functions]
features: [async-functions]
---*/
{ async function f() {} /*{ body }*/ }

View File

@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
flags: [async-iteration]
features: [async-iteration]
---*/
{ async function* f() {} /*{ body }*/ }

View File

@ -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 }*/ }

View File

@ -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 }*/ }

View File

@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
flags: [async-functions]
features: [async-functions]
---*/
{ async function f() {} /*{ body }*/ }

View File

@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
flags: [async-iteration]
features: [async-iteration]
---*/
{ async function* f() {} /*{ body }*/ }

View File

@ -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 }*/ }

View File

@ -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 }*/ }

View File

@ -5,7 +5,7 @@
desc: >
redeclaration with AsyncFunctionDeclaration
template: redeclare
flags: [async-functions]
features: [async-functions]
---*/
//- body

View File

@ -5,7 +5,7 @@
desc: >
redeclaration with AsyncGeneratorDeclaration
template: redeclare
flags: [async-iteration]
features: [async-iteration]
---*/
//- body

View File

@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
flags: [async-functions]
features: [async-functions]
---*/
{ async function f() {} /*{ body }*/ }

View File

@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
flags: [async-iteration]
features: [async-iteration]
---*/
{ async function* f() {} /*{ body }*/ }

View File

@ -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 }*/ }

View File

@ -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 }*/ }