Add original to BooleanLiteral

This commit is contained in:
kpdecker
2014-11-28 16:55:41 -06:00
parent 6a7a8c803d
commit ffc9fb5007
+2 -1
View File
@@ -120,7 +120,8 @@ var AST = {
BooleanLiteral: function(bool, locInfo) {
this.loc = locInfo;
this.type = 'BooleanLiteral';
this.value = bool === 'true';
this.original =
this.value = bool === 'true';
},
Hash: function(pairs, locInfo) {