From 9bf2a0b1bcaff8f6c00d68cf40a99e4adebcb99b Mon Sep 17 00:00:00 2001
From: John MacFarlane <fiddlosopher@gmail.com>
Date: Fri, 9 Jan 2015 17:29:09 -0800
Subject: Don't include string_content in output of toAST().

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

(limited to 'js/lib')

diff --git a/js/lib/node.js b/js/lib/node.js
index c160cc5..da33b9e 100644
--- a/js/lib/node.js
+++ b/js/lib/node.js
@@ -167,8 +167,7 @@ Node.prototype.toAST = function() {
     var cur;
     var result = { t: this.t };
 
-    var propsToShow = ['t', 'c', 'list_data', 'string_content',
-                       'pos', 'info', 'level'];
+    var propsToShow = ['t', 'c', 'list_data', 'pos', 'info', 'level'];
 
     for (var i = 0; i < propsToShow.length; i++) {
         var prop = propsToShow[i];
-- 
cgit v1.2.3