property-list-with-property-list.js (721B)
1 // Copyright (C) 2015 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es6id: 13.3.3 6 description: > 7 The ObjectBindingPattern with deep binding property lists 8 info: | 9 Destructuring Binding Patterns - Syntax 10 11 ObjectBindingPattern[Yield] : 12 { } 13 { BindingPropertyList[?Yield] } 14 { BindingPropertyList[?Yield] , } 15 16 BindingPropertyList[Yield] : 17 BindingProperty[?Yield] 18 BindingPropertyList[?Yield] , BindingProperty[?Yield] 19 20 features: [destructuring-binding] 21 ---*/ 22 23 function fn1({a: {p: q}, b: {r}, c: {s = 0}, d: {}}) {} 24 25 function fn2(x, {a: r, b: s, c: t}, y) {} 26 27 function fn3({x: {y: {z: {} = 42}}}) {} 28 29 reportCompare(0, 0);