Global Metrics

path: .metrics.nargs.sum
old: 1.0
new: 2.0

path: .metrics.nargs.average
old: 0.5
new: 1.0

Spaces Data

Minimal test - lines (50, 59)

path: .spaces[0].metrics.nargs.average
old: 0.5
new: 1.0

path: .spaces[0].metrics.nargs.sum
old: 1.0
new: 2.0

Code

function* f({ w: [x, y, z] = [4, 5, 6] }) {
  assert.sameValue(x, 7);
  assert.sameValue(y, undefined);
  assert.sameValue(z, undefined);

  assert.throws(ReferenceError, function() {
    w;
  });
  callCount = callCount + 1;
};