compiler/PPCCompiler.st
changeset 505 19d830b74322
parent 503 ff58cd9f1f3c
child 516 3b81c9e53352
equal deleted inserted replaced
504:0fb1f0799fc1 505:19d830b74322
   622     ]
   622     ]
   623 !
   623 !
   624 
   624 
   625 installMethods
   625 installMethods
   626     cache keysAndValuesDo: [ :key :method |
   626     cache keysAndValuesDo: [ :key :method |
   627         compiledParser compileSilently: method code classified: method category.
   627         compiledParser compileSilently: method source classified: method category.
   628     ]
   628     ]
       
   629 
       
   630     "Modified: / 24-07-2015 / 19:45:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   629 !
   631 !
   630 
   632 
   631 installVariables
   633 installVariables
   632     | varString |
   634     | varString |
   633     varString := constants keys inject: '' into: [:r :e | r, ' ', e  ].
   635     varString := constants keys inject: '' into: [:r :e | r, ' ', e  ].