From: Rich Trott Date: Fri, 18 Mar 2016 05:04:22 +0000 (-0700) Subject: src,tools: use template literals X-Git-Tag: upstream/4.4.3~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=4f683ab912b394731b62468943d87265f4f39a33;p=platform%2Fupstream%2Fnodejs.git src,tools: use template literals Convert string concatenation to template literals. Enforce with lint rule. PR-URL: https://github.com/nodejs/node/pull/5778 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Colin Ihrig Reviewed-By: Michaël Zasso Reviewed-By: Johan Bergström --- diff --git a/src/.eslintrc b/src/.eslintrc new file mode 100644 index 0000000..9ec5142 --- /dev/null +++ b/src/.eslintrc @@ -0,0 +1,3 @@ +# ECMAScript-6 +# http://eslint.org/docs/rules/#ecmascript-6 +prefer-template: 2 \ No newline at end of file diff --git a/src/node.js b/src/node.js index 8914e85..7301d9d 100644 --- a/src/node.js +++ b/src/node.js @@ -564,19 +564,19 @@ module.paths = Module._nodeModulePaths(cwd); var script = process._eval; var body = script; - script = 'global.__filename = ' + JSON.stringify(name) + ';\n' + + script = `global.__filename = ${JSON.stringify(name)};\n` + 'global.exports = exports;\n' + 'global.module = module;\n' + 'global.__dirname = __dirname;\n' + 'global.require = require;\n' + 'return require("vm").runInThisContext(' + - JSON.stringify(body) + ', { filename: ' + - JSON.stringify(name) + ' });\n'; + `${JSON.stringify(body)}, { filename: ` + + `${JSON.stringify(name)} });\n`; // Defer evaluation for a tick. This is a workaround for deferred // events not firing when evaluating scripts from the command line, // see https://github.com/nodejs/node/issues/1600. process.nextTick(function() { - var result = module._compile(script, name + '-wrapper'); + var result = module._compile(script, `${name}-wrapper`); if (process._print_eval) console.log(result); }); } @@ -768,7 +768,7 @@ sig.slice(0, 3) === 'SIG') { err = process._kill(pid, startup.lazyConstants()[sig]); } else { - throw new Error('Unknown signal: ' + sig); + throw new Error(`Unknown signal: ${sig}`); } } @@ -873,7 +873,7 @@ } function NativeModule(id) { - this.filename = id + '.js'; + this.filename = `${id}.js`; this.id = id; this.exports = {}; this.loaded = false; @@ -893,10 +893,10 @@ } if (!NativeModule.exists(id)) { - throw new Error('No such native module ' + id); + throw new Error(`No such native module ${id}`); } - process.moduleLoadList.push('NativeModule ' + id); + process.moduleLoadList.push(`NativeModule ${id}`); var nativeModule = new NativeModule(id);