Fix typo.

Close #239
This commit is contained in:
Mihai Bazon
2013-07-12 09:56:58 +03:00
parent d0689c81bb
commit fc9ba323c4

View File

@@ -255,7 +255,7 @@ function tokenizer($TEXT, filename) {
};
function token(type, value, is_comment) {
S.regex_allowed = ((type == "operator" && !UNARY_POSTFIX[value]) ||
S.regex_allowed = ((type == "operator" && !UNARY_POSTFIX(value)) ||
(type == "keyword" && KEYWORDS_BEFORE_EXPRESSION(value)) ||
(type == "punc" && PUNC_BEFORE_EXPRESSION(value)));
var ret = {