aboutsummaryrefslogtreecommitdiffstats
path: root/tools/node_modules/expresso/deps/jscoverage/tests/javascript/javascript-destructuring.js
blob: c8cf4c9bd88c4a6668e866e6708486d73afa6302 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// https://developer.mozilla.org/en/New_in_JavaScript_1.7

[a, b] = [b, a];

function f() {
  return [1, 2];
}
[a, b] = f();

for (let [name, value] in Iterator(obj)) {
  print(name);
  print(value);
}

for each (let {name: n, family: { father: f } } in people) {
  print(n);
  print(f);
}

var [a, , b] = f();
[,,,] = f();

function g() {
  var parsedURL = /^(\w+)\:\/\/([^\/]+)\/(.*)$/.exec(url);
  if (!parsedURL)
    return null;
  var [, protocol, fullhost, fullpath] = parsedURL;
}

function h(a, [b, c], {foo: d, 'bar': e}) {
  f();
  g();
}

x = function([a, b]) a + b;

({x: x0, y: y0}) = point;
var {x: x0, y: y0} = point;
let ({x: x0, y: y0} = point) {
  print(x0);
  print(y0);
}