test262/test/language/statements/async-function/dflt-params-ref-prior.js

43 lines
1.4 KiB
JavaScript
Raw Normal View History

2017-03-16 22:39:00 +01:00
// This file was procedurally generated from the following sources:
2017-04-20 18:31:29 +02:00
// - src/function-forms/dflt-params-ref-prior.case
// - src/function-forms/default/async-func-decl.template
2017-03-16 22:39:00 +01:00
/*---
2017-04-20 18:31:29 +02:00
description: Referencing a parameter that occurs earlier in the ParameterList (async function declaration)
esid: sec-async-function-definitions
features: [default-parameters, async-functions]
2017-03-16 22:39:00 +01:00
flags: [generated, async]
info: |
2017-04-20 18:31:29 +02:00
14.6 Async Function Definitions
2017-03-16 22:39:00 +01:00
2017-04-20 18:31:29 +02:00
AsyncFunctionDeclaration :
async function BindingIdentifier ( FormalParameters ) { AsyncFunctionBody }
2017-03-16 22:39:00 +01:00
14.1.19 Runtime Semantics: IteratorBindingInitialization
FormalsList : FormalsList , FormalParameter
1. Let status be the result of performing IteratorBindingInitialization for
FormalsList using iteratorRecord and environment as the arguments.
2. ReturnIfAbrupt(status).
3. Return the result of performing IteratorBindingInitialization for
FormalParameter using iteratorRecord and environment as the arguments.
---*/
var x = 0;
var callCount = 0;
2017-04-20 18:31:29 +02:00
2017-03-16 22:39:00 +01:00
// Stores a reference `ref` for case evaluation
2017-04-20 18:31:29 +02:00
async function ref(x, y = x, z = y) {
2017-03-16 22:39:00 +01:00
assert.sameValue(x, 3, 'first argument value');
assert.sameValue(y, 3, 'second argument value');
assert.sameValue(z, 3, 'third argument value');
callCount = callCount + 1;
2017-04-20 18:31:29 +02:00
}
2017-03-16 22:39:00 +01:00
2017-04-20 18:31:29 +02:00
ref(3).then(() => {
assert.sameValue(callCount, 1, 'function invoked exactly once');
2017-03-16 22:39:00 +01:00
}).then($DONE, $DONE);