X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=lambda_evaluator.mdwn;h=230045b9d5338cf198cbbc825b8c9fabdd070657;hp=96da17d13ea57349ce1ce1c05b8570bf5a7ed3ae;hb=5271bbdcd9179cc9ace42a81600420d309214396;hpb=b755e761bbd31d507c6cf954ab58742174cd7a20 diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index 96da17d1..230045b9 100644 --- a/lambda_evaluator.mdwn +++ b/lambda_evaluator.mdwn @@ -78,12 +78,13 @@ Object.prototype.error = function (message, t) { var parse = make_parse(); function go(source) { - var string, tree; + var string, tree, expr; 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 = tree.handler().to_string(); + // 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); + expr = tree.handler(); + string = expr.to_string() + "\n\n~~>\n\n" + reduce(expr, false, false).to_string(); } catch (e) { string = JSON.stringify(e, ['name', 'message', 'from', 'to', 'key', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4);