blob: ade3060efbabb97b3026ac4a1528d2f2e1ecf04d [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/async-functions/returns-async-function-returns-newtarget.case
// - src/async-functions/evaluation/async-class-decl-static-method.template
/*---
description: Async function returns an async function. (Static async method as a ClassDeclaration element)
esid: prod-AsyncMethod
features: [async-functions]
flags: [generated, async]
info: |
ClassElement :
static MethodDefinition
MethodDefinition :
AsyncMethod
Async Function Definitions
AsyncMethod :
async [no LineTerminator here] PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody }
---*/
let count = 0;
class C {
static async method(x) {
return async function() { return new.target; };
}
}
// Stores a reference `asyncFn` for case evaluation
let asyncFn = C.method;
asyncFn(1).then(retFn => {
count++;
return retFn();
}).then(result => {
assert.sameValue(result, undefined);
assert.sameValue(count, 1);
}).then($DONE, $DONE);