Coverage: Missing test for function length and parameter destructuring. Closes gh-2895

This commit is contained in:
Rick Waldron 2020-11-13 11:31:15 -05:00
parent 602c828805
commit b5ccbcb5e4
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// 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);

View File

@ -0,0 +1,17 @@
// 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 ObjectBindingPattern 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);