aboutsummaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/acorn/dist/bin.js
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2019-07-21 00:15:32 -0400
committerMichaƫl Zasso <targos@protonmail.com>2019-07-23 08:15:42 +0200
commited43880d6ba1ab6e499ef027c1e9e11a2376ba50 (patch)
treebd9551f12adfd0dc9f333adf306fc92f2417b2ad /tools/node_modules/eslint/node_modules/acorn/dist/bin.js
parent302865e8b9756812b45d9ff60403c2a231c01152 (diff)
downloadandroid-node-v8-ed43880d6ba1ab6e499ef027c1e9e11a2376ba50.tar.gz
android-node-v8-ed43880d6ba1ab6e499ef027c1e9e11a2376ba50.tar.bz2
android-node-v8-ed43880d6ba1ab6e499ef027c1e9e11a2376ba50.zip
tools: update ESLint to 6.1.0
Update ESLint to 6.1.0 PR-URL: https://github.com/nodejs/node/pull/28793 Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Diffstat (limited to 'tools/node_modules/eslint/node_modules/acorn/dist/bin.js')
-rw-r--r--tools/node_modules/eslint/node_modules/acorn/dist/bin.js12
1 files changed, 4 insertions, 8 deletions
diff --git a/tools/node_modules/eslint/node_modules/acorn/dist/bin.js b/tools/node_modules/eslint/node_modules/acorn/dist/bin.js
index f8961ce87e..faa461e658 100644
--- a/tools/node_modules/eslint/node_modules/acorn/dist/bin.js
+++ b/tools/node_modules/eslint/node_modules/acorn/dist/bin.js
@@ -4,11 +4,7 @@ var path = require('path');
var fs = require('fs');
var acorn = require('./acorn.js');
-var infile;
-var forceFile;
-var silent = false;
-var compact = false;
-var tokenize = false;
+var infile, forceFile, silent = false, compact = false, tokenize = false;
var options = {};
function help(status) {
@@ -45,14 +41,14 @@ function run(code) {
result = acorn.parse(code, options);
} else {
result = [];
- var tokenizer$$1 = acorn.tokenizer(code, options), token;
+ var tokenizer = acorn.tokenizer(code, options), token;
do {
- token = tokenizer$$1.getToken();
+ token = tokenizer.getToken();
result.push(token);
} while (token.type !== acorn.tokTypes.eof)
}
} catch (e) {
- console.error(e.message);
+ console.error(infile && infile !== "-" ? e.message.replace(/\(\d+:\d+\)$/, function (m) { return m.slice(0, 1) + infile + " " + m.slice(1); }) : e.message);
process.exit(1);
}
if (!silent) { console.log(JSON.stringify(result, null, compact ? null : 2)); }