compiler/PPCInlineCharacterNode.st
changeset 442 d333233f7ebd
parent 441 6f0eb79b3dda
parent 438 20598d7ce9fa
child 443 2c87ed364404
--- a/compiler/PPCInlineCharacterNode.st	Fri May 01 13:44:43 2015 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-"{ Package: 'stx:goodies/petitparser/compiler' }"
-
-"{ NameSpace: Smalltalk }"
-
-PPCAbstractCharacterNode subclass:#PPCInlineCharacterNode
-	instanceVariableNames:''
-	classVariableNames:''
-	poolDictionaries:''
-	category:'PetitCompiler-Nodes'
-!
-
-!PPCInlineCharacterNode methodsFor:'as yet unclassified'!
-
-printOn: aStream
-	aStream nextPutAll: #inlined.
-	super printOn: aStream.
-!
-
-start: compiler id: id
-	compiler startInline: id.
-!
-
-stop: compiler
-	^ compiler stopInline
-! !
-