compiler/PPCCodeBlock.st
changeset 494 5cdfa83d6027
parent 481 34ee0d3c72e7
child 503 ff58cd9f1f3c
equal deleted inserted replaced
493:0aed9c69ed48 494:5cdfa83d6027
   124 !PPCCodeBlock methodsFor:'initialization'!
   124 !PPCCodeBlock methodsFor:'initialization'!
   125 
   125 
   126 initialize
   126 initialize
   127     "Invoked when a new instance is created."
   127     "Invoked when a new instance is created."
   128 
   128 
   129     "/ please change as required (and remove this comment)
       
   130     buffer := String new writeStream.
   129     buffer := String new writeStream.
   131     indentation := 1.
   130     indentation := 1.
   132     temporaries := OrderedCollection new.          
   131     temporaries := OrderedCollection new.
   133 
       
   134 
       
   135     "/ super initialize.   -- commented since inherited method does nothing
       
   136 
   132 
   137     "Modified: / 01-06-2015 / 20:57:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   133     "Modified: / 01-06-2015 / 20:57:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   134     "Modified (comment): / 18-06-2015 / 06:04:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   138 ! !
   135 ! !
   139 
   136 
   140 !PPCCodeBlock methodsFor:'printing and storing'!
   137 !PPCCodeBlock methodsFor:'printing and storing'!
   141 
   138 
   142 codeOn: aStream
   139 codeOn: aStream