compiler/PPCMethod.st
changeset 481 34ee0d3c72e7
parent 479 6316a98b7150
child 488 19a9c25960ef
--- a/compiler/PPCMethod.st	Tue Jun 02 17:25:57 2015 +0100
+++ b/compiler/PPCMethod.st	Wed Jun 03 06:23:49 2015 +0100
@@ -116,7 +116,7 @@
     innerBlock := PPCCodeBlock new.
     innerBlock indentationLevel: outerBlock indentationLevel + 1.  
     [ 
-        buffer addOnLine:'['.
+        buffer addOnLine:'['; nl; codeIndent.
         buffer := innerBlock.
         self code: contents.
     ] ensure:[
@@ -130,6 +130,7 @@
     ]
 
     "Created: / 01-06-2015 / 22:33:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 03-06-2015 / 06:11:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !PPCMethod methodsFor:'code generation - indenting'!