blob: 3baaad1616e1d89b03bfad71cd75c5ced7a3b62c [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/async-functions/returns-async-arrow-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 () => new.target;
}
}
// Stores a reference `asyncFn` for case evaluation
let asyncFn = C.method;
asyncFn().then(retFn => {
count++;
return retFn();
}).then(result => {
assert.sameValue(result, undefined);
assert.sameValue(count, 1);
}).then($DONE, $DONE);