IRInterpreter.st
changeset 42 acdc3ec6d152
parent 41 f3898a3b378d
child 43 c8afb8e4c3cc
equal deleted inserted replaced
41:f3898a3b378d 42:acdc3ec6d152
     2 
     2 
     3 Object subclass:#IRInterpreter
     3 Object subclass:#IRInterpreter
     4 	instanceVariableNames:''
     4 	instanceVariableNames:''
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'NewCompiler-IR'
     7 	category:'IR Compiler-IR'
     8 !
     8 !
     9 
     9 
    10 IRInterpreter comment:'I visit each IRInstruction in an IRMethod in order.  Each instruction sends its instruction message to me upon being visited.  See my ''instructions'' method category for complete list of instructions.  Subclasses should override them.'
    10 IRInterpreter comment:'I visit each IRInstruction in an IRMethod in order.  Each instruction sends its instruction message to me upon being visited.  See my ''instructions'' method category for complete list of instructions.  Subclasses should override them.'
    11 !
    11 !
    12 
    12 
   119 !
   119 !
   120 
   120 
   121 version_SVN
   121 version_SVN
   122     ^ '$Id::                                                                                                                        $'
   122     ^ '$Id::                                                                                                                        $'
   123 ! !
   123 ! !
       
   124