File: object-pattern.js

package info (click to toggle)
qtdeclarative-opensource-src 5.15.2%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 259,220 kB
  • sloc: javascript: 512,396; cpp: 493,894; xml: 8,892; python: 3,304; ansic: 2,764; sh: 206; makefile: 59; php: 27
file content (44 lines) | stat: -rw-r--r-- 1,073 bytes parent folder | download | duplicates (11)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-destructuring-binding-patterns
description: >
  The rest parameter can be a binding pattern.
info: |
  Destructuring Binding Patterns - Syntax

  BindingRestElement[Yield]:
    ...BindingPattern[?Yield]
---*/

function empty(...{}) {}

function emptyWithArray(...{p: []}) {}

function emptyWithObject(...{p: {}}) {}

function emptyWithLeading(x, ...{}) {}


function singleElement(...{a: b}) {}

function singleElementWithInitializer(...{a: b = 0}) {}

function singleElementWithArray(...{p: [a]}) {}

function singleElementWithObject(...{p: {a: b}}) {}

function singleElementWithLeading(x, ...{a: b}) {}


function multiElement(...{a: r, b: s, c: t}) {}

function multiElementWithInitializer(...{a: r = 0, b: s, c: t = 1}) {}

function multiElementWithArray(...{p: [a], b, q: [c]}) {}

function multiElementWithObject(...{a: {p: q}, b: {r}, c: {s = 0}}) {}

function multiElementWithLeading(x, y, ...{a: r, b: s, c: t}) {}