summaryrefslogtreecommitdiff
path: root/benchmark/v8
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-04-26 16:48:05 -0700
committerJames M Snell <jasnell@gmail.com>2017-04-28 14:29:45 -0700
commit1052383f7ce4d151bdcc3e71f522c5f5b430bff6 (patch)
tree2d60bb34b4b54883755ccbeff780a40e9c2886fc /benchmark/v8
parentbed4612c408dddd86f82b0d939338b6b72a5e346 (diff)
downloadandroid-node-v8-1052383f7ce4d151bdcc3e71f522c5f5b430bff6.tar.gz
android-node-v8-1052383f7ce4d151bdcc3e71f522c5f5b430bff6.tar.bz2
android-node-v8-1052383f7ce4d151bdcc3e71f522c5f5b430bff6.zip
v8: refactor struture of v8 module
Use the more efficient module.exports = {} pattern, restructure imports from bindings, requires. PR-URL: https://github.com/nodejs/node/pull/12681 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Diffstat (limited to 'benchmark/v8')
-rw-r--r--benchmark/v8/get-stats.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/benchmark/v8/get-stats.js b/benchmark/v8/get-stats.js
index 34d52d039f..96de757239 100644
--- a/benchmark/v8/get-stats.js
+++ b/benchmark/v8/get-stats.js
@@ -8,8 +8,7 @@ const bench = common.createBenchmark(main, {
'getHeapStatistics',
'getHeapSpaceStatistics'
],
- n: [1e6],
- flags: ['--ignition --turbo', '']
+ n: [1e6]
});
function main(conf) {