Simon Krajewski 12 years ago
parent
commit
11e68f0eb2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      std/haxe/macro/Printer.hx

+ 2 - 2
std/haxe/macro/Printer.hx

@@ -63,8 +63,8 @@ class Printer {
 		case OpMod: "%";
 		case OpInterval: "...";
 		case OpAssignOp(op):
-			printBinop(op);
-			"=";
+			printBinop(op)
+			+ "=";
 	}
 		
 	public function printConstant(c:Constant) return switch(c) {