Global Metrics

path: .metrics.nargs.average
old: 0.3333333333333333
new: 0.6666666666666666

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

Spaces Data

Minimal test - lines (37, 46)

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

  async *method({ w: { x, y, z } = { x: 4, y: 5, z: 6 } }) {
    assert.sameValue(x, undefined);
    assert.sameValue(y, undefined);
    assert.sameValue(z, 7);

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