2020-11-13 17:31:15 +01:00
|
|
|
// 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: >
|
2020-11-18 22:42:02 +01:00
|
|
|
Function.length when ArrayBindingPattern in FormalParameterList
|
2020-11-13 17:31:15 +01:00
|
|
|
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);
|
|
|
|
|