compiler/PPCTokenStarSeparatorNode.st
changeset 421 7e08b31e0dae
child 422 116d2b2af905
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/PPCTokenStarSeparatorNode.st	Mon Nov 24 00:09:23 2014 +0000
@@ -0,0 +1,29 @@
+"{ Package: 'stx:goodies/petitparser/compiler' }"
+
+PPCTokenStarMessagePredicateNode subclass:#PPCTokenStarSeparatorNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitCompiler-Nodes'
+!
+
+!PPCTokenStarSeparatorNode methodsFor:'as yet unclassified'!
+
+asInlined
+	^ PPCInlineTokenStarSeparatorNode new
+		message: message;
+		name: name;
+		child: child;
+		yourself
+!
+
+compileWith: compiler effect: effect id: id
+	compiler startMethod: id.
+	compiler add: 'context skipSeparators.'.
+ ^ compiler stopMethod.
+!
+
+rewrite: changeStatus
+	"Nothing to do"
+! !
+