summaryrefslogtreecommitdiff
path: root/benchmark/es/destructuring-object-bench.js
blob: 73687f018de9dda4cbfc435cb4b55efc80622686 (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
43
44
45
46
47
48
49
50
51
'use strict';

const common = require('../common.js');

const bench = common.createBenchmark(main, {
  method: ['normal', 'destructureObject'],
  millions: [100]
});

function runNormal(n) {
  var i = 0;
  const o = { x: 0, y: 1 };
  bench.start();
  for (; i < n; i++) {
    /* eslint-disable no-unused-vars */
    const x = o.x;
    const y = o.y;
    const r = o.r || 2;
    /* eslint-enable no-unused-vars */
  }
  bench.end(n / 1e6);
}

function runDestructured(n) {
  var i = 0;
  const o = { x: 0, y: 1 };
  bench.start();
  for (; i < n; i++) {
    /* eslint-disable no-unused-vars */
    const { x, y, r = 2 } = o;
    /* eslint-enable no-unused-vars */
  }
  bench.end(n / 1e6);
}

function main({ millions, method }) {
  const n = millions * 1e6;

  switch (method) {
    case '':
      // Empty string falls through to next line as default, mostly for tests.
    case 'normal':
      runNormal(n);
      break;
    case 'destructureObject':
      runDestructured(n);
      break;
    default:
      throw new Error('Unexpected method');
  }
}