compiler/PPCInlineCharacterNode.st
changeset 391 553a5456963b
child 392 9b297f0d949c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/PPCInlineCharacterNode.st	Sun Oct 26 01:03:31 2014 +0000
@@ -0,0 +1,27 @@
+"{ Package: 'stx:goodies/petitparser/compiler' }"
+
+PPCAbstractCharacterNode subclass:#PPCInlineCharacterNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitCompiler-Nodes'
+!
+
+PPCInlineCharacterNode comment:''
+!
+
+!PPCInlineCharacterNode methodsFor:'as yet unclassified'!
+
+printOn: aStream
+	aStream nextPutAll: #inlined.
+	super printOn: aStream.
+!
+
+start: compiler id: id
+	compiler startInline: id.
+!
+
+stop: compiler
+	^ compiler stopInline
+! !
+