mirror of https://github.com/tc39/test262.git
18 lines
613 B
JavaScript
18 lines
613 B
JavaScript
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
esid: sec-destructuring-binding-patterns
|
||
|
description: >
|
||
|
Funciton.length when ArrayBindingPattern in FormalParameterList
|
||
|
features: [destructuring-binding]
|
||
|
---*/
|
||
|
|
||
|
assert.sameValue((([a,b]) => {}).length, 1);
|
||
|
assert.sameValue((function([a,b]) {}).length, 1);
|
||
|
assert.sameValue((function * ([a,b]) {}).length, 1);
|
||
|
assert.sameValue((async ([a,b]) => {}).length, 1);
|
||
|
assert.sameValue((async function([a,b]) {}).length, 1);
|
||
|
assert.sameValue((async function * ([a,b]) {}).length, 1);
|
||
|
|