blob: d1d8e3d07858d59ab149ed4b1d2e3a604a12a7d8 [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/async-functions/returns-async-arrow-returns-arguments-from-parent-function.case
// - src/async-functions/evaluation/async-expression-named.template
/*---
description: Async function returns an async function. (Named async function expression)
esid: prod-AsyncFunctionExpression
features: [async-functions]
flags: [generated, async]
info: |
Async Function Definitions
AsyncFunctionExpression :
async [no LineTerminator here] function BindingIdentifier ( FormalParameters ) { AsyncFunctionBody }
---*/
let count = 0;
var asyncFn = async function asyncFn(x) {
let a = arguments;
return async () => a === arguments;
};
asyncFn().then(retFn => {
count++;
return retFn();
}).then(result => {
assert.sameValue(result, true);
assert.sameValue(count, 1);
}).then($DONE, $DONE);