summaryrefslogtreecommitdiff
path: root/benchmark/misc/v8-bench.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/misc/v8-bench.js')
-rw-r--r--benchmark/misc/v8-bench.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/benchmark/misc/v8-bench.js b/benchmark/misc/v8-bench.js
index 85c64b51fd..97ff0c35c4 100644
--- a/benchmark/misc/v8-bench.js
+++ b/benchmark/misc/v8-bench.js
@@ -9,8 +9,8 @@ var dir = path.join(__dirname, '..', '..', 'deps', 'v8', 'benchmarks');
function load(filename, inGlobal) {
var source = fs.readFileSync(path.join(dir, filename), 'utf8');
- if (!inGlobal) source = '(function () {' + source + '\n})()';
- vm.runInThisContext(source, { filename: 'v8/bechmark/' + filename });
+ if (!inGlobal) source = `(function () {${source}\n})()`;
+ vm.runInThisContext(source, { filename: `v8/bechmark/${filename}` });
}
load('base.js', true);
@@ -41,13 +41,13 @@ global.BenchmarkSuite.RunSuites({
});
},
NotifyError: function(name, error) {
- console.error(name + ': ' + error);
+ console.error(`${name}: ${error}`);
},
NotifyScore: function(score) {
common.sendResult({
name: benchmark_name,
conf: {
- benchmark: 'Score (version ' + global.BenchmarkSuite.version + ')'
+ benchmark: `Score (version ${global.BenchmarkSuite.version})`
},
rate: score,
time: 0