X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=lambda_evaluator.mdwn;h=87797dfb037d1764a4c40079010ffa73922bd219;hp=2c6086bf3502cc7f67e452b8c9473d30fcb3c60a;hb=a3b99e629ce7473014b705dbb8ea9c4321639805;hpb=6f288f5b1aaa1d42e7f98682e74143fc66e1b53c diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index 2c6086bf..87797dfb 100644 --- a/lambda_evaluator.mdwn +++ b/lambda_evaluator.mdwn @@ -83,10 +83,10 @@ Object.prototype.error = function (message, t) { tree = parse(source); // string = JSON.stringify(tree, ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4); expr = tree.handler(); - string = JSON.stringify(expr, ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'tag', 'variable', 'left', 'right', 'bound', 'body' ], 4); + // string = JSON.stringify(expr, ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'tag', 'variable', 'left', 'right', 'bound', 'body' ], 4); // string = expr.to_string() + "\n\n~~>\n\n"; - // string = ''; - // string = string + reduce(expr, false, false).to_string(); + string = ''; + string = string + reduce(expr, false, false).to_string(); } catch (e) { string = JSON.stringify(e, ['name', 'message', 'from', 'to', 'key', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4);