blob: e8ac1fc9def82310d9026e46335172f87ef59fa9 [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/async-functions/returns-async-function-returns-arguments-from-own-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 function() { return a === arguments; };
};
asyncFn(1).then(retFn => {
count++;
return retFn();
}).then(result => {
assert.sameValue(result, false);
assert.sameValue(count, 1);
}).then($DONE, $DONE);