remove unneccesary Literal generator raw

This commit is contained in:
Sebastian McKenzie 2014-11-14 00:54:12 +11:00
parent 01ade47af9
commit 9e285cdc20

View File

@ -80,7 +80,5 @@ exports.Literal = function (node) {
this.push("/" + node.regex.pattern + "/" + node.regex.flags);
} else if (val === null) {
this.push("null");
} else if (node.raw) {
this.push(node.raw);
}
};