summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLeo Balter <leonardo.balter@gmail.com>2017-05-16 17:31:32 -0400
committerLeo Balter <leonardo.balter@gmail.com>2017-05-16 17:31:32 -0400
commit26b0437c4f89b7c4d42be4dbf463e27d02d8e64e (patch)
tree82c41f25930830ca7fcaa2d6bd21f025eb1fa1a4 /src
parent2b0a8cc1c48eadb5f7087dde41158bf6f320e18b (diff)
downloadqtdeclarative-testsuites-26b0437c4f89b7c4d42be4dbf463e27d02d8e64e.tar.gz
Fix features flags
Diffstat (limited to 'src')
-rw-r--r--src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-function-declaration.template2
-rw-r--r--src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-generator-declaration.template2
-rw-r--r--src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-function-declaration.template2
-rw-r--r--src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-generator-declaration.template2
-rw-r--r--src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-function-declaration.template2
-rw-r--r--src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-generator-declaration.template2
-rw-r--r--src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-function-declaration.template2
-rw-r--r--src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-generator-declaration.template2
-rw-r--r--src/declarations/redeclare-with-async-function-declaration.case2
-rw-r--r--src/declarations/redeclare-with-async-generator-declaration.case2
-rw-r--r--src/declarations/redeclare/block-attempt-to-redeclare-async-function-declaration.template2
-rw-r--r--src/declarations/redeclare/block-attempt-to-redeclare-async-generator-declaration.template2
-rw-r--r--src/declarations/redeclare/switch-attempt-to-redeclare-async-function-declaration.template2
-rw-r--r--src/declarations/redeclare/switch-attempt-to-redeclare-async-generator-declaration.template2
14 files changed, 14 insertions, 14 deletions
diff --git a/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-function-declaration.template b/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-function-declaration.template
index 4a06bf44b..2a5c0f3e3 100644
--- a/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-function-declaration.template
+++ b/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-function-declaration.template
@@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
-flags: [async-functions]
+features: [async-functions]
---*/
{ async function f() {} /*{ body }*/ }
diff --git a/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-generator-declaration.template b/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-generator-declaration.template
index 5327ac0fb..17ae293b6 100644
--- a/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-generator-declaration.template
+++ b/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-async-generator-declaration.template
@@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
-flags: [async-iteration]
+features: [async-iteration]
---*/
{ async function* f() {} /*{ body }*/ }
diff --git a/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-function-declaration.template b/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-function-declaration.template
index 57a185a7c..40a2bf41e 100644
--- a/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-function-declaration.template
+++ b/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-function-declaration.template
@@ -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 }*/ }
diff --git a/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-generator-declaration.template b/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-generator-declaration.template
index 6d6715233..326f03d47 100644
--- a/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-generator-declaration.template
+++ b/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-async-generator-declaration.template
@@ -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 }*/ }
diff --git a/src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-function-declaration.template b/src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-function-declaration.template
index 2349e07a3..28c7f582f 100644
--- a/src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-function-declaration.template
+++ b/src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-function-declaration.template
@@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
-flags: [async-functions]
+features: [async-functions]
---*/
{ async function f() {} /*{ body }*/ }
diff --git a/src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-generator-declaration.template b/src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-generator-declaration.template
index ed2adc2d6..d07e3e68a 100644
--- a/src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-generator-declaration.template
+++ b/src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-generator-declaration.template
@@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
-flags: [async-iteration]
+features: [async-iteration]
---*/
{ async function* f() {} /*{ body }*/ }
diff --git a/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-function-declaration.template b/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-function-declaration.template
index 6317cd26f..37f893c81 100644
--- a/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-function-declaration.template
+++ b/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-function-declaration.template
@@ -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 }*/ }
diff --git a/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-generator-declaration.template b/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-generator-declaration.template
index 7b8c6b0b9..7c049c54d 100644
--- a/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-generator-declaration.template
+++ b/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-generator-declaration.template
@@ -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 }*/ }
diff --git a/src/declarations/redeclare-with-async-function-declaration.case b/src/declarations/redeclare-with-async-function-declaration.case
index cf74b701d..672dd06ce 100644
--- a/src/declarations/redeclare-with-async-function-declaration.case
+++ b/src/declarations/redeclare-with-async-function-declaration.case
@@ -5,7 +5,7 @@
desc: >
redeclaration with AsyncFunctionDeclaration
template: redeclare
-flags: [async-functions]
+features: [async-functions]
---*/
//- body
diff --git a/src/declarations/redeclare-with-async-generator-declaration.case b/src/declarations/redeclare-with-async-generator-declaration.case
index 7f2638d2a..3413db42b 100644
--- a/src/declarations/redeclare-with-async-generator-declaration.case
+++ b/src/declarations/redeclare-with-async-generator-declaration.case
@@ -5,7 +5,7 @@
desc: >
redeclaration with AsyncGeneratorDeclaration
template: redeclare
-flags: [async-iteration]
+features: [async-iteration]
---*/
//- body
diff --git a/src/declarations/redeclare/block-attempt-to-redeclare-async-function-declaration.template b/src/declarations/redeclare/block-attempt-to-redeclare-async-function-declaration.template
index 4a06bf44b..2a5c0f3e3 100644
--- a/src/declarations/redeclare/block-attempt-to-redeclare-async-function-declaration.template
+++ b/src/declarations/redeclare/block-attempt-to-redeclare-async-function-declaration.template
@@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
-flags: [async-functions]
+features: [async-functions]
---*/
{ async function f() {} /*{ body }*/ }
diff --git a/src/declarations/redeclare/block-attempt-to-redeclare-async-generator-declaration.template b/src/declarations/redeclare/block-attempt-to-redeclare-async-generator-declaration.template
index 5327ac0fb..17ae293b6 100644
--- a/src/declarations/redeclare/block-attempt-to-redeclare-async-generator-declaration.template
+++ b/src/declarations/redeclare/block-attempt-to-redeclare-async-generator-declaration.template
@@ -13,7 +13,7 @@ info: |
negative:
phase: early
type: SyntaxError
-flags: [async-iteration]
+features: [async-iteration]
---*/
{ async function* f() {} /*{ body }*/ }
diff --git a/src/declarations/redeclare/switch-attempt-to-redeclare-async-function-declaration.template b/src/declarations/redeclare/switch-attempt-to-redeclare-async-function-declaration.template
index 57a185a7c..40a2bf41e 100644
--- a/src/declarations/redeclare/switch-attempt-to-redeclare-async-function-declaration.template
+++ b/src/declarations/redeclare/switch-attempt-to-redeclare-async-function-declaration.template
@@ -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 }*/ }
diff --git a/src/declarations/redeclare/switch-attempt-to-redeclare-async-generator-declaration.template b/src/declarations/redeclare/switch-attempt-to-redeclare-async-generator-declaration.template
index 6d6715233..326f03d47 100644
--- a/src/declarations/redeclare/switch-attempt-to-redeclare-async-generator-declaration.template
+++ b/src/declarations/redeclare/switch-attempt-to-redeclare-async-generator-declaration.template
@@ -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 }*/ }