X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?a=blobdiff_plain;f=lambda_evaluator.mdwn;h=3240839ad8d8a337e692e6b989f6f693cbbbf774;hb=cd8399c376ac90e274d01f063f14140ee4c41e68;hp=96da17d13ea57349ce1ce1c05b8570bf5a7ed3ae;hpb=b755e761bbd31d507c6cf954ab58742174cd7a20;p=lambda.git diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index 96da17d1..3240839a 100644 --- a/lambda_evaluator.mdwn +++ b/lambda_evaluator.mdwn @@ -81,8 +81,8 @@ Object.prototype.error = function (message, t) { var string, tree; try { tree = parse(source); -// string = JSON.stringify(tree, ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4); - string = JSON.stringify(tree.handler(), ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'tag', 'variable', 'left', 'right', 'bound', 'body' ], 4); + string = JSON.stringify(tree, ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4); + // string = JSON.stringify(tree.handler(), ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'tag', 'variable', 'left', 'right', 'bound', 'body' ], 4); // string = tree.handler().to_string(); } catch (e) { string = JSON.stringify(e, ['name', 'message', 'from', 'to', 'key',