Skip to content
Snippets Groups Projects
Unverified Commit 6330eccf authored by Daniel Ehrenberg's avatar Daniel Ehrenberg Committed by Leo Balter
Browse files

Add feature flags for various tests

parent 2878106c
No related branches found
No related tags found
No related merge requests found
Showing
with 20 additions and 0 deletions
...@@ -15,6 +15,7 @@ info: | ...@@ -15,6 +15,7 @@ info: |
4. Let excludedNames be a new empty List. 4. Let excludedNames be a new empty List.
5. Return CopyDataProperties(object, fromValue, excludedNames). 5. Return CopyDataProperties(object, fromValue, excludedNames).
features: [object-spread]
---*/ ---*/
//- error //- error
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
desc: Object Spread operator results in error when using an unresolvable reference desc: Object Spread operator results in error when using an unresolvable reference
template: error template: error
esid: pending esid: pending
features: [object-spread]
info: | info: |
Pending Runtime Semantics: PropertyDefinitionEvaluation Pending Runtime Semantics: PropertyDefinitionEvaluation
......
...@@ -10,6 +10,7 @@ description: > ...@@ -10,6 +10,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(x = 1) {"use strict"}); (async function*(x = 1) {"use strict"});
...@@ -10,6 +10,7 @@ negative: ...@@ -10,6 +10,7 @@ negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
flags: [onlyStrict] flags: [onlyStrict]
features: [async-iteration]
---*/ ---*/
(async function*(arguments) { }); (async function*(arguments) { });
...@@ -9,6 +9,7 @@ description: > ...@@ -9,6 +9,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function* await() { }); (async function* await() { });
...@@ -11,6 +11,7 @@ negative: ...@@ -11,6 +11,7 @@ negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
flags: [onlyStrict] flags: [onlyStrict]
features: [async-iteration]
---*/ ---*/
(async function* arguments() { }); (async function* arguments() { });
...@@ -11,6 +11,7 @@ negative: ...@@ -11,6 +11,7 @@ negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
flags: [onlyStrict] flags: [onlyStrict]
features: [async-iteration]
---*/ ---*/
(async function* eval() { }); (async function* eval() { });
...@@ -9,6 +9,7 @@ description: > ...@@ -9,6 +9,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*() { super(); }); (async function*() { super(); });
...@@ -9,6 +9,7 @@ description: > ...@@ -9,6 +9,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*() { super.prop; }); (async function*() { super.prop; });
...@@ -10,6 +10,7 @@ negative: ...@@ -10,6 +10,7 @@ negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
flags: [onlyStrict] flags: [onlyStrict]
features: [async-iteration]
---*/ ---*/
(async function*(eval) { }); (async function*(eval) { });
...@@ -10,6 +10,7 @@ description: > ...@@ -10,6 +10,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(a) { const a = 0; }); (async function*(a) { const a = 0; });
...@@ -10,6 +10,7 @@ description: > ...@@ -10,6 +10,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(a) { let a; }); (async function*(a) { let a; });
...@@ -9,6 +9,7 @@ description: > ...@@ -9,6 +9,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(x = await 1) { }); (async function*(x = await 1) { });
...@@ -10,6 +10,7 @@ description: > ...@@ -10,6 +10,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(await) { }); (async function*(await) { });
...@@ -9,6 +9,7 @@ description: > ...@@ -9,6 +9,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(a = super()) { }); (async function*(a = super()) { });
...@@ -9,6 +9,7 @@ description: > ...@@ -9,6 +9,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(a = super.prop) { }); (async function*(a = super.prop) { });
...@@ -9,6 +9,7 @@ description: > ...@@ -9,6 +9,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(x = yield) { }); (async function*(x = yield) { });
...@@ -10,6 +10,7 @@ description: > ...@@ -10,6 +10,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*(yield) { }); (async function*(yield) { });
...@@ -10,6 +10,7 @@ description: > ...@@ -10,6 +10,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*() { (async function*() {
......
...@@ -10,6 +10,7 @@ description: > ...@@ -10,6 +10,7 @@ description: >
negative: negative:
phase: early phase: early
type: SyntaxError type: SyntaxError
features: [async-iteration]
---*/ ---*/
(async function*() { (async function*() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment