parsers/java/PJExpressionNode.st
changeset 435 3bc08fb90133
equal deleted inserted replaced
434:840942b96eea 435:3bc08fb90133
       
     1 "{ Package: 'stx:goodies/petitparser/parsers/java' }"
       
     2 
       
     3 "{ NameSpace: Smalltalk }"
       
     4 
       
     5 PJASTNode subclass:#PJExpressionNode
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'PetitJava-AST'
       
    10 !
       
    11 
       
    12 PJExpressionNode comment:'Common superclass for all expression nodes e.i. nodes that have some kind of valuse: variables, literals, method invocations, etc.'
       
    13 !
       
    14 
       
    15 !PJExpressionNode methodsFor:'visiting'!
       
    16 
       
    17 acceptVisitor: aVisitor
       
    18 
       
    19 	aVisitor visitExpressionNode: self
       
    20 ! !
       
    21