fix options.strictMode reference

This commit is contained in:
Sebastian McKenzie 2014-11-03 22:39:26 +11:00
parent 16063dd8b3
commit 7f57741824

View File

@ -164,7 +164,7 @@
comments.push(comment);
};
}
if (opts.strictMode) {
if (options.strictMode) {
strict = true;
}
isKeyword = options.ecmaVersion >= 6 ? isEcma6Keyword : isEcma5AndLessKeyword;