compiler/PPCInlineCharacterNode.st
changeset 438 20598d7ce9fa
parent 437 54b3bc9e3987
child 442 d333233f7ebd
child 452 9f4558b3be66
--- a/compiler/PPCInlineCharacterNode.st	Tue Apr 21 17:20:11 2015 +0100
+++ /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
-! !
-