-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benchmark: add benchmark for destructuring object
PR-URL: #8680 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
- Loading branch information
1 parent
aa5a16a
commit 999f727
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
method: ['normal', 'destructureObject'], | ||
millions: [100] | ||
}); | ||
|
||
function runNormal(n) { | ||
var i = 0; | ||
var o = { x: 0, y: 1 }; | ||
bench.start(); | ||
for (; i < n; i++) { | ||
/* eslint-disable no-unused-vars */ | ||
var x = o.x; | ||
var y = o.y; | ||
var r = o.r || 2; | ||
/* eslint-enable no-unused-vars */ | ||
} | ||
bench.end(n / 1e6); | ||
} | ||
|
||
function runDestructured(n) { | ||
var i = 0; | ||
var o = { x: 0, y: 1 }; | ||
bench.start(); | ||
for (; i < n; i++) { | ||
/* eslint-disable no-unused-vars */ | ||
var { x, y, r = 2 } = o; | ||
/* eslint-enable no-unused-vars */ | ||
} | ||
bench.end(n / 1e6); | ||
} | ||
|
||
function main(conf) { | ||
const n = +conf.millions * 1e6; | ||
|
||
switch (conf.method) { | ||
case 'normal': | ||
runNormal(n); | ||
break; | ||
case 'destructureObject': | ||
runDestructured(n); | ||
break; | ||
default: | ||
throw new Error('Unexpected method'); | ||
} | ||
} |