This commit is contained in:
treygriffith 2013-05-08 12:44:28 -07:00
commit c3dbdcea76

View File

@ -174,7 +174,7 @@ function is_identifier_string(str){
if (!is_identifier_char(str.charAt(i)))
return false;
}
return true;
return str.length > 0;
};
function parse_js_number(num) {