compiler/PPCTokenizingCodeGen.st
changeset 518 a6d8b93441b0
parent 515 b5316ef15274
child 525 751532c8f3db
equal deleted inserted replaced
517:9a7fa841f12e 518:a6d8b93441b0
     6 	instanceVariableNames:'rememberStrategy errorStrategy'
     6 	instanceVariableNames:'rememberStrategy errorStrategy'
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:''
     8 	poolDictionaries:''
     9 	category:'PetitCompiler-Compiler-Codegen'
     9 	category:'PetitCompiler-Compiler-Codegen'
    10 !
    10 !
       
    11 
    11 
    12 
    12 !PPCTokenizingCodeGen methodsFor:'code generation'!
    13 !PPCTokenizingCodeGen methodsFor:'code generation'!
    13 
    14 
    14 codeClearError
    15 codeClearError
    15     errorStrategy codeClearError
    16     errorStrategy codeClearError
    55     super initialize.
    56     super initialize.
    56     rememberStrategy := PPCCompilerTokenizingRememberStrategy on: self.
    57     rememberStrategy := PPCCompilerTokenizingRememberStrategy on: self.
    57     errorStrategy := PPCCompilerTokenizingErrorStrategy on: self.
    58     errorStrategy := PPCCompilerTokenizingErrorStrategy on: self.
    58 ! !
    59 ! !
    59 
    60 
       
    61 !PPCTokenizingCodeGen class methodsFor:'documentation'!
       
    62 
       
    63 version_HG
       
    64 
       
    65     ^ '$Changeset: <not expanded> $'
       
    66 ! !
       
    67