summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/destructuring/binding/syntax/property-list-followed-by-a-single-comma.js
blob: cd280360fad7d96ac46b02231f42c70b6ca5d990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 13.3.3
description: >
  The Binding Property List followed by a single comma is a valid syntax
info: |
  Destructuring Binding Patterns - Syntax

  ObjectBindingPattern[Yield] :
    { }
    { BindingPropertyList[?Yield] }
    { BindingPropertyList[?Yield] , }

features: [destructuring-binding]
---*/

function fn1({x,}) {}

function fn2({a: {p: q, }, }) {}

function fn3({x,}) {}

reportCompare(0, 0);