Add original value tracking to ContentNode

This commit is contained in:
kpdecker
2014-08-23 16:33:14 -05:00
parent 35b196d069
commit 0528b91644
+1 -1
View File
@@ -112,7 +112,7 @@ var AST = {
ContentNode: function(string, locInfo) {
LocationInfo.call(this, locInfo);
this.type = "content";
this.string = string;
this.original = this.string = string;
},
HashNode: function(pairs, locInfo) {