compiler/PPCNodeVisitor.st
changeset 534 a949c4fe44df
parent 532 132d7898a2a1
equal deleted inserted replaced
533:666372dbe307 534:a949c4fe44df
     6 	instanceVariableNames:'openSet closeSet cache'
     6 	instanceVariableNames:'openSet closeSet cache'
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:''
     8 	poolDictionaries:''
     9 	category:'PetitCompiler-Visitors'
     9 	category:'PetitCompiler-Visitors'
    10 !
    10 !
       
    11 
    11 
    12 
    12 !PPCNodeVisitor class methodsFor:'instance creation'!
    13 !PPCNodeVisitor class methodsFor:'instance creation'!
    13 
    14 
    14 new
    15 new
    15     ^ self basicNew initialize
    16     ^ self basicNew initialize
   292 
   293 
   293 visitUnknownNode: node
   294 visitUnknownNode: node
   294     ^ self visitNode: node
   295     ^ self visitNode: node
   295 ! !
   296 ! !
   296 
   297 
       
   298 !PPCNodeVisitor class methodsFor:'documentation'!
       
   299 
       
   300 version_HG
       
   301 
       
   302     ^ '$Changeset: <not expanded> $'
       
   303 ! !
       
   304