summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/es/destructuring-object-bench.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/benchmark/es/destructuring-object-bench.js')
-rw-r--r--deps/node/benchmark/es/destructuring-object-bench.js49
1 files changed, 0 insertions, 49 deletions
diff --git a/deps/node/benchmark/es/destructuring-object-bench.js b/deps/node/benchmark/es/destructuring-object-bench.js
deleted file mode 100644
index 0c5615fd..00000000
--- a/deps/node/benchmark/es/destructuring-object-bench.js
+++ /dev/null
@@ -1,49 +0,0 @@
-'use strict';
-
-const common = require('../common.js');
-
-const bench = common.createBenchmark(main, {
- method: ['normal', 'destructureObject'],
- n: [1e8]
-});
-
-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);
-}
-
-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);
-}
-
-function main({ n, method }) {
- 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 "${method}"`);
- }
-}