compiler/PPCMappedActionNode.st
changeset 481 34ee0d3c72e7
child 489 0ca7a70db0f5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/PPCMappedActionNode.st	Wed Jun 03 06:23:49 2015 +0100
@@ -0,0 +1,19 @@
+"{ Package: 'stx:goodies/petitparser/compiler' }"
+
+"{ NameSpace: Smalltalk }"
+
+PPCActionNode subclass:#PPCMappedActionNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitParser-Parsers'
+!
+
+!PPCMappedActionNode methodsFor:'visiting'!
+
+accept: visitor
+    ^ visitor visitMappedActionNode: self
+
+    "Created: / 02-06-2015 / 17:27:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+