test262/test/language/statements/generators/dstr/dflt-ary-ptrn-rest-init-obj.js

58 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-06-02 20:51:51 +02:00
// This file was procedurally generated from the following sources:
// - src/dstr-binding/ary-ptrn-rest-init-obj.case
// - src/dstr-binding/default/gen-func-decl-dflt.template
/*---
2018-09-25 22:25:56 +02:00
description: Rest element (nested object pattern) does not support initializer (generator function declaration (default parameter))
2016-06-02 20:51:51 +02:00
esid: sec-generator-function-definitions-runtime-semantics-instantiatefunctionobject
features: [generators, destructuring-binding, default-parameters]
2016-06-02 20:51:51 +02:00
flags: [generated]
2016-05-28 22:15:57 +02:00
negative:
phase: parse
2016-05-28 22:15:57 +02:00
type: SyntaxError
2016-06-02 20:51:51 +02:00
info: |
GeneratorDeclaration : function * ( FormalParameters ) { GeneratorBody }
[...]
2. Let F be GeneratorFunctionCreate(Normal, FormalParameters,
GeneratorBody, scope, strict).
[...]
9.2.1 [[Call]] ( thisArgument, argumentsList)
[...]
7. Let result be OrdinaryCallEvaluateBody(F, argumentsList).
[...]
9.2.1.3 OrdinaryCallEvaluateBody ( F, argumentsList )
1. Let status be FunctionDeclarationInstantiation(F, argumentsList).
[...]
9.2.12 FunctionDeclarationInstantiation(func, argumentsList)
[...]
23. Let iteratorRecord be Record {[[iterator]]:
CreateListIterator(argumentsList), [[done]]: false}.
24. If hasDuplicates is true, then
[...]
25. Else,
b. Let formalStatus be IteratorBindingInitialization for formals with
iteratorRecord and env as arguments.
[...]
13.3.3 Destructuring Binding Patterns
ArrayBindingPattern[Yield] :
[ Elisionopt BindingRestElement[?Yield]opt ]
[ BindingElementList[?Yield] ]
[ BindingElementList[?Yield] , Elisionopt BindingRestElement[?Yield]opt ]
---*/
$DONOTEVALUATE();
2016-06-02 20:51:51 +02:00
var callCount = 0;
function* f([...{ x } = []] = []) {
callCount = callCount + 1;
};
f().next();
assert.sameValue(callCount, 1, 'generator function invoked exactly once');