X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=lambda_evaluator.mdwn;h=8de938d28c9079add6b13e6ec62f11f528603444;hp=3240839ad8d8a337e692e6b989f6f693cbbbf774;hb=d429ecd74f447b9c017aa3ec9c293f095d6b91ed;hpb=cd8399c376ac90e274d01f063f14140ee4c41e68 diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index 3240839a..8de938d2 100644 --- a/lambda_evaluator.mdwn +++ b/lambda_evaluator.mdwn @@ -81,9 +81,9 @@ 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, ['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(); + string = tree.handler().to_string(); } catch (e) { string = JSON.stringify(e, ['name', 'message', 'from', 'to', 'key', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4);