compiler/PPMappedActionParser.st
changeset 481 34ee0d3c72e7
parent 480 5b0254cca4db
child 501 e29bd90f388e
--- a/compiler/PPMappedActionParser.st	Tue Jun 02 17:25:57 2015 +0100
+++ b/compiler/PPMappedActionParser.st	Wed Jun 03 06:23:49 2015 +0100
@@ -9,6 +9,20 @@
 	category:'PetitParser-Parsers'
 !
 
+!PPMappedActionParser methodsFor:'*petitcompiler'!
+
+asCompilerNode
+    ^ PPCMappedActionNode new
+        name: self name;
+        block: block;
+        child: parser;
+        properties: properties;
+        parser: self;
+        yourself
+
+    "Created: / 02-06-2015 / 17:27:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
 !PPMappedActionParser methodsFor:'parsing'!
 
 parseOn: aPPContext