compiler/PPCScannerCodeGenerator.st
changeset 517 9a7fa841f12e
parent 516 3b81c9e53352
child 525 751532c8f3db
equal deleted inserted replaced
516:3b81c9e53352 517:9a7fa841f12e
     7 		incommingTransitions methodCache id resultStrategy fsaCache'
     7 		incommingTransitions methodCache id resultStrategy fsaCache'
     8 	classVariableNames:''
     8 	classVariableNames:''
     9 	poolDictionaries:''
     9 	poolDictionaries:''
    10 	category:'PetitCompiler-Scanner'
    10 	category:'PetitCompiler-Scanner'
    11 !
    11 !
       
    12 
       
    13 
       
    14 !PPCScannerCodeGenerator class methodsFor:'instance creation'!
       
    15 
       
    16 new
       
    17     "return an initialized instance"
       
    18 
       
    19     ^ self basicNew initialize.
       
    20 ! !
    12 
    21 
    13 !PPCScannerCodeGenerator methodsFor:'accessing'!
    22 !PPCScannerCodeGenerator methodsFor:'accessing'!
    14 
    23 
    15 arguments
    24 arguments
    16     ^ arguments 
    25     ^ arguments 
   380     codeGen := PPCFSACodeGen new.
   389     codeGen := PPCFSACodeGen new.
   381     arguments := PPCArguments default.
   390     arguments := PPCArguments default.
   382     fsaCache := IdentityDictionary new.
   391     fsaCache := IdentityDictionary new.
   383 ! !
   392 ! !
   384 
   393 
       
   394 !PPCScannerCodeGenerator class methodsFor:'documentation'!
       
   395 
       
   396 version_HG
       
   397 
       
   398     ^ '$Changeset: <not expanded> $'
       
   399 ! !
       
   400