summaryrefslogtreecommitdiff
path: root/src/function-forms/params-trailing-comma-multiple.case
blob: c6f565ccff6d7ff950dbd711347a308e37225125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2016 Jeff Morrison. All rights reserved.
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: A trailing comma should not increase the respective length, using multiple parameters
template: default
info: |
    Trailing comma in the parameters list

    14.1 Function Definitions

    FormalParameters[Yield, Await] : FormalParameterList[?Yield, ?Await] ,
---*/

//- params
a, b,
//- args
42, 39, 1
//- body
assert.sameValue(a, 42);
assert.sameValue(b, 39);
//- teardown
assert.sameValue(ref.length, 2, 'length is properly set');