compiler/PPCInlineTokenStarSeparatorNode.st
changeset 421 7e08b31e0dae
child 422 116d2b2af905
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/PPCInlineTokenStarSeparatorNode.st	Mon Nov 24 00:09:23 2014 +0000
@@ -0,0 +1,21 @@
+"{ Package: 'stx:goodies/petitparser/compiler' }"
+
+PPCTokenStarSeparatorNode subclass:#PPCInlineTokenStarSeparatorNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitCompiler-Nodes'
+!
+
+!PPCInlineTokenStarSeparatorNode methodsFor:'as yet unclassified'!
+
+asInlined
+	^ self
+!
+
+compileWith: compiler effect: effect id: id
+	compiler startInline: id.
+	compiler add: 'context skipSeparators.'.
+ ^ compiler stopInline.
+! !
+