Fix transpiler error in printer.js

This commit is contained in:
kpdecker
2013-10-12 15:40:55 -05:00
parent e1f7f00cd4
commit 7ee0c10c10
+4 -1
View File
@@ -4,7 +4,10 @@ export function print(ast) {
return new PrintVisitor().accept(ast);
}
export function PrintVisitor() { this.padding = 0; }
export function PrintVisitor() {
this.padding = 0;
}
PrintVisitor.prototype = new Visitor();
PrintVisitor.prototype.pad = function(string, newline) {