removed container
authorClaus Gittinger <cg@exept.de>
Mon, 02 Jul 2018 07:43:33 +0200
changeset 580 75a3eefc5abe
parent 579 dce11b1e76c9
child 581 4bce53337088
removed container
PPParserResource.st
--- a/PPParserResource.st	Mon Jul 02 07:43:28 2018 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,38 +0,0 @@
-"{ Package: 'stx:goodies/petitparser' }"
-
-TestResource subclass:#PPParserResource
-	instanceVariableNames:'parsers'
-	classVariableNames:''
-	poolDictionaries:''
-	category:'PetitTests-Core'
-!
-
-
-!PPParserResource methodsFor:'accessing'!
-
-parserAt: aParserClass
-	"Answer a cached instance of aParserClass."
-	
-	^ parsers at: aParserClass name ifAbsentPut: [ aParserClass new ]
-! !
-
-!PPParserResource methodsFor:'running'!
-
-setUp
-	super setUp.
-	parsers := Dictionary new
-! !
-
-!PPParserResource class methodsFor:'documentation'!
-
-version
-    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParserResource.st,v 1.3 2012-05-04 22:09:18 vrany Exp $'
-!
-
-version_CVS
-    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParserResource.st,v 1.3 2012-05-04 22:09:18 vrany Exp $'
-!
-
-version_SVN
-    ^ '§Id: PPParserResource.st 4 2010-12-18 17:02:23Z kursjan §'
-! !