compiler/PPCMethodStrategy.st
changeset 438 20598d7ce9fa
parent 437 54b3bc9e3987
child 442 d333233f7ebd
child 452 9f4558b3be66
--- a/compiler/PPCMethodStrategy.st	Tue Apr 21 17:20:11 2015 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,45 +0,0 @@
-"{ Package: 'stx:goodies/petitparser/compiler' }"
-
-"{ NameSpace: Smalltalk }"
-
-Object subclass:#PPCMethodStrategy
-	instanceVariableNames:''
-	classVariableNames:''
-	poolDictionaries:''
-	category:'PetitCompiler-Nodes'
-!
-
-PPCMethodStrategy class instanceVariableNames:'Instance'
-
-"
- No other class instance variables are inherited by this class.
-"
-!
-
-!PPCMethodStrategy class methodsFor:'as yet unclassified'!
-
-instance
-	^ Instance ifNil: [ 
-		Instance := self basicNew initialize.
-	]
-!
-
-new
-	^ self instance
-! !
-
-!PPCMethodStrategy methodsFor:'as yet unclassified'!
-
-return: compiler
-	compiler add: '^'.
-!
-
-start: compiler id: id
-	self halt: 'deprecated?'.
-	^ compiler startMethod: id
-!
-
-stop: compiler
- ^ compiler stopMethod
-! !
-