This reverts commit 7cfbc9f90f.
PR-URL: https://github.com/nodejs/node/pull/31755
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
48 lines
876 B
JavaScript
48 lines
876 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
method: ['swap', 'destructure'],
|
|
n: [1e8]
|
|
});
|
|
|
|
function runSwapManual(n) {
|
|
let x, y, r;
|
|
bench.start();
|
|
for (let i = 0; i < n; i++) {
|
|
x = 1, y = 2;
|
|
r = x;
|
|
x = y;
|
|
y = r;
|
|
assert.strictEqual(x, 2);
|
|
assert.strictEqual(y, 1);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|
|
function runSwapDestructured(n) {
|
|
let x, y;
|
|
bench.start();
|
|
for (let i = 0; i < n; i++) {
|
|
x = 1, y = 2;
|
|
[x, y] = [y, x];
|
|
assert.strictEqual(x, 2);
|
|
assert.strictEqual(y, 1);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|
|
function main({ n, method }) {
|
|
switch (method) {
|
|
case 'swap':
|
|
runSwapManual(n);
|
|
break;
|
|
case 'destructure':
|
|
runSwapDestructured(n);
|
|
break;
|
|
default:
|
|
throw new Error(`Unexpected method "${method}"`);
|
|
}
|
|
}
|