mirror of https://github.com/tc39/test262.git
add async-functions feature to files which should have it
This commit is contained in:
parent
ee7c379375
commit
f5369c26a4
|
@ -8,6 +8,7 @@ description: >
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -8,6 +8,7 @@ description: >
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -8,6 +8,7 @@ description: >
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -8,6 +8,7 @@ description: >
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -27,6 +27,7 @@ info: |
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -9,6 +9,7 @@ negative:
|
|||
phase: parse
|
||||
type: SyntaxError
|
||||
flags: [onlyStrict]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -8,6 +8,7 @@ description: It is a SyntaxError if FormalParameters' default expressions contai
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -8,6 +8,7 @@ description: It is a SyntaxError if FormalParameters contains await
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -8,6 +8,7 @@ description: It is a SyntaxError if AsyncFunctionBody contains SuperCall is true
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -9,6 +9,7 @@ negative:
|
|||
phase: parse
|
||||
type: SyntaxError
|
||||
flags: [onlyStrict]
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -8,6 +8,7 @@ description: It is a SyntaxError if BoundNames of FormalParameters also occurs i
|
|||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
features: [async-functions]
|
||||
---*/
|
||||
|
||||
$DONOTEVALUATE();
|
||||
|
|
|
@ -6,6 +6,7 @@ author: Brian Terlson <brian.terlson@microsoft.com>
|
|||
esid: pending
|
||||
description: >
|
||||
Async function method definitions return promises
|
||||
features: [async-functions]
|
||||
---*/
|
||||
var obj = {
|
||||
async method() {}
|
||||
|
|
Loading…
Reference in New Issue