parsers/java/PJASTNode.st
changeset 435 3bc08fb90133
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/parsers/java/PJASTNode.st	Tue Apr 21 14:57:16 2015 +0100
@@ -0,0 +1,21 @@
+"{ Package: 'stx:goodies/petitparser/parsers/java' }"
+
+"{ NameSpace: Smalltalk }"
+
+Object subclass:#PJASTNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitJava-AST'
+!
+
+PJASTNode comment:'General node defining for Java AST'
+!
+
+!PJASTNode methodsFor:'visiting'!
+
+acceptVisitor: aVisitor
+
+	^self subclassResponsibility
+! !
+