fix regression: CLI options with hyphens like -b ascii-only (#1640)

fixes #1637
This commit is contained in:
kzc
2017-03-23 23:55:03 -04:00
committed by Alex Lam S.L
parent e918748d88
commit 79334dda10
2 changed files with 3 additions and 1 deletions

View File

@@ -695,6 +695,7 @@ function parse($TEXT, options) {
html5_comments : true,
bare_returns : false,
shebang : true,
cli : false,
});
var S = {
@@ -1501,6 +1502,7 @@ function parse($TEXT, options) {
};
function is_assignable(expr) {
if (options.cli) return true;
return expr instanceof AST_PropAccess || expr instanceof AST_SymbolRef;
};