compiler/PPCMappedActionNode.st
changeset 502 1e45d3c96ec5
child 503 ff58cd9f1f3c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/PPCMappedActionNode.st	Fri Jul 24 15:06:54 2015 +0100
@@ -0,0 +1,19 @@
+"{ Package: 'stx:goodies/petitparser/compiler' }"
+
+"{ NameSpace: Smalltalk }"
+
+PPCActionNode subclass:#PPCMappedActionNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitCompiler-Nodes'
+!
+
+!PPCMappedActionNode methodsFor:'visiting'!
+
+accept: visitor
+    ^ visitor visitMappedActionNode: self
+
+    "Created: / 02-06-2015 / 17:27:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+