From 0905b173c63f902e6d7b51c948c8110e398a3742 Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Sun, 11 Jan 2015 20:24:46 -0800
Subject: node.js:  Added title and destination to list of props to show in
 toAST.

---
 js/lib/node.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'js/lib')

diff --git a/js/lib/node.js b/js/lib/node.js
index ae02838..c8b31f0 100644
--- a/js/lib/node.js
+++ b/js/lib/node.js
@@ -167,7 +167,7 @@ Node.prototype.walker = function() {
 var toASTNode = function(node) {
     var result = {};
     var propsToShow = ['t', 'literal', 'list_data', 'sourcepos',
-                       'info', 'level'];
+                       'info', 'level', 'title', 'destination'];
 
     for (var i = 0, len = propsToShow.length; i < len; i++) {
         var prop = propsToShow[i];
-- 
cgit v1.2.3