compiler/PPCInlineStrategy.st
changeset 422 116d2b2af905
parent 421 7e08b31e0dae
child 423 f3b99c7c1b20
--- a/compiler/PPCInlineStrategy.st	Mon Nov 24 00:09:23 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-"{ Package: 'stx:goodies/petitparser/compiler' }"
-
-Object subclass:#PPCInlineStrategy
-	instanceVariableNames:''
-	classVariableNames:''
-	poolDictionaries:''
-	category:'PetitCompiler-Nodes'
-!
-
-PPCInlineStrategy class instanceVariableNames:'Instance'
-
-"
- No other class instance variables are inherited by this class.
-"
-!
-
-!PPCInlineStrategy class methodsFor:'as yet unclassified'!
-
-instance
-	^ Instance ifNil: [ 
-		Instance := self basicNew initialize.
-	]
-!
-
-new
-	^ self instance
-! !
-
-!PPCInlineStrategy methodsFor:'as yet unclassified'!
-
-return: compiler
-	compiler add: ''.
-!
-
-start: compiler id: id
-	^ compiler startInline: id
-!
-
-stop: compiler
- ^ compiler stopInline
-! !
-