tweak lambda evaluator
[lambda.git] / lambda_evaluator.mdwn
index 3240839..8de938d 100644 (file)
@@ -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);