From 584726df780fb9969c50217e9be56337f76fcd99 Mon Sep 17 00:00:00 2001 From: Demis Palma Date: Sat, 19 Dec 2015 18:13:51 +0000 Subject: [PATCH] Unterminated statement Missing semicolons. --- bin/uglifyjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/uglifyjs b/bin/uglifyjs index f7f22215..10818b3e 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -409,7 +409,7 @@ async.eachLimit(files, 1, function (file, cb) { writeNameCache("props", cache); })(); - var SCOPE_IS_NEEDED = COMPRESS || MANGLE || ARGS.lint + var SCOPE_IS_NEEDED = COMPRESS || MANGLE || ARGS.lint; var TL_CACHE = readNameCache("vars"); if (SCOPE_IS_NEEDED) { @@ -528,7 +528,7 @@ function getOptions(x, constants) { ret[name] = true; return true; // no descend } - print_error(node.TYPE) + print_error(node.TYPE); print_error("Error parsing arguments in: " + x); process.exit(1); }));