PPLimitedChoiceParser.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 31 Jul 2015 14:07:31 +0100
changeset 514 46dd1237b20a
parent 421 7e08b31e0dae
permissions -rw-r--r--
Fixed PPCSetUpBefore...Resource to work on Pharo. Few othr minor Pharo fixes.

"{ Package: 'stx:goodies/petitparser' }"

PPChoiceParser subclass:#PPLimitedChoiceParser
	instanceVariableNames:'limit'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitParser-Parsers'
!

!PPLimitedChoiceParser methodsFor:'accessing'!

limit
	
	^ limit
!

limit: anObject
	
	limit := anObject
! !

!PPLimitedChoiceParser methodsFor:'as yet unclassified'!

// aRule 
	^ self copyWith: aRule
!

initialize
	limit := nil asParser
!

parseOn: aPPContext
	"This is optimized code that avoids unnecessary block activations, do not change. When all choices fail, the last failure is answered."

	| element limitResult memento |
	"self halt."
	1 to: parsers size do: [ :index |
		memento := aPPContext remember.
		
		element := (parsers at: index)
			parseOn: aPPContext.
		
		(element isPetitFailure not) ifTrue: [ 
			"check limit"
			limitResult := limit parseOn: aPPContext.
			limitResult isPetitFailure ifTrue: [ 
				element := PPFailure message: 'limit failed' at: aPPContext position .
				aPPContext restore: memento.
			] ifFalse: [ ^ element ].
		].
	].	
	^ element
! !