parsers/java/PJExpressionNode.st
changeset 435 3bc08fb90133
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/parsers/java/PJExpressionNode.st	Tue Apr 21 14:57:16 2015 +0100
@@ -0,0 +1,21 @@
+"{ Package: 'stx:goodies/petitparser/parsers/java' }"
+
+"{ NameSpace: Smalltalk }"
+
+PJASTNode subclass:#PJExpressionNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitJava-AST'
+!
+
+PJExpressionNode comment:'Common superclass for all expression nodes e.i. nodes that have some kind of valuse: variables, literals, method invocations, etc.'
+!
+
+!PJExpressionNode methodsFor:'visiting'!
+
+acceptVisitor: aVisitor
+
+	aVisitor visitExpressionNode: self
+! !
+