minor
authorMihai Bazon <mihai@bazon.net>
Thu, 4 Oct 2012 14:28:09 +0000 (17:28 +0300)
committerMihai Bazon <mihai@bazon.net>
Thu, 4 Oct 2012 14:28:09 +0000 (17:28 +0300)
lib/output.js

index 84452d3..0972162 100644 (file)
@@ -940,12 +940,10 @@ function OutputStream(options) {
     });
     DEFPRINT(AST_ObjectSetter, function(self, output){
         output.print("set");
-        output.space();
         self.value._do_print(output, true);
     });
     DEFPRINT(AST_ObjectGetter, function(self, output){
         output.print("get");
-        output.space();
         self.value._do_print(output, true);
     });
     DEFPRINT(AST_Symbol, function(self, output){