Undo a few renames in parse-js, to facilitate porting over of changes.

This commit is contained in:
Jürg Lehni 2011-06-28 10:43:06 +02:00
parent e93b3d5c97
commit d96ac85879
2 changed files with 11 additions and 11 deletions

10
lib/parse-js-min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1066,7 +1066,7 @@ function parse($TEXT, strict_mode, embed_tokens) {
} }
if (allow_calls && is("operator") && HOP(UNARY_POSTFIX, S.token.value)) { if (allow_calls && is("operator") && HOP(UNARY_POSTFIX, S.token.value)) {
return prog1(curry(make_unary, "unary-postfix", S.token.value, expr), return prog1(curry(make_unary, "unary-postfix", S.token.value, expr),
next); next);
} }
return expr; return expr;
}; };
@ -1155,7 +1155,7 @@ function parse($TEXT, strict_mode, embed_tokens) {
/* -----[ helper for AST traversal ]----- */ /* -----[ helper for AST traversal ]----- */
function walker() { function ast_walker() {
function _vardefs(defs) { function _vardefs(defs) {
return [ this[0], MAP(defs, function(def){ return [ this[0], MAP(defs, function(def){
var a = [ def[0] ]; var a = [ def[0] ];
@ -1374,7 +1374,7 @@ function make_string(str) {
} }
}; };
function stringify(ast, beautify) { function gen_code(ast, beautify) {
if (beautify) beautify = defaults(beautify, { if (beautify) beautify = defaults(beautify, {
indent_start : 0, indent_start : 0,
indent_level : 4, indent_level : 4,
@ -1827,7 +1827,7 @@ function array_to_hash(a) {
}; };
function slice(a, start) { function slice(a, start) {
return Array.prototype.slice.call(a, start == null ? 0 : start); return Array.prototype.slice.call(a, start || 0);
}; };
function characters(str) { function characters(str) {
@ -1875,9 +1875,9 @@ function MAP(a, f, o) {
return { return {
parse: parse, parse: parse,
stringify: stringify, gen_code: gen_code,
tokenizer: tokenizer, tokenizer: tokenizer,
walker: walker ast_walker: ast_walker
}; };
}; };