PPRepeatingParser.st
changeset 378 53d66ecfeb1b
parent 179 c7539657b514
child 406 c05417ade8ac
--- a/PPRepeatingParser.st	Fri Oct 03 02:33:08 2014 +0100
+++ b/PPRepeatingParser.st	Fri Oct 03 02:45:16 2014 +0100
@@ -26,17 +26,8 @@
 	^ (self on: aParser) setMin: aMinInteger max: aMaxInteger
 ! !
 
-!PPRepeatingParser methodsFor:'*petitanalyzer-matching'!
-
-match: aParser inContext: aDictionary seen: anIdentitySet
-	^ (super match: aParser inContext: aDictionary seen: anIdentitySet) and: [ self min = aParser min and: [ self max = aParser max ] ]
-! !
 
-!PPRepeatingParser methodsFor:'*petitanalyzer-testing'!
 
-isNullable
-	^ min = 0
-! !
 
 !PPRepeatingParser methodsFor:'accessing'!