PPPredicateParser.st
author Claus Gittinger <cg@exept.de>
Fri, 13 Jan 2012 12:22:50 +0100
changeset 4 90de244a7fa2
parent 0 739fe9b7253e
child 23 93f28e32de35
permissions -rw-r--r--
move to package

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

PPParser subclass:#PPPredicateParser
	instanceVariableNames:'predicate predicateMessage negated negatedMessage'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitParser-Parsers'
!

PPPredicateParser comment:'An abstract parser that accepts if a given predicate holds.
Instance Variables:
	predicate       <BlockClosure>  The block testing for the predicate.
	predicateMessage        <String>        The error message of the predicate.
	negated <BlockClosure>  The block testing for the negation of the predicate.
	negatedMessage  <String>        The error message of the negated predicate.'
!


!PPPredicateParser methodsFor:'accessing'!

block
	"Answer the predicate block of the receiver."

	^ predicate
!

message
	"Answer the failure message."

	^ predicateMessage
! !

!PPPredicateParser methodsFor:'printing'!

printNameOn: aStream
	super printNameOn: aStream.
	aStream nextPutAll: ', '; print: predicateMessage
! !

!PPPredicateParser class methodsFor:'documentation'!

version_SVN
    ^ '$Id: PPPredicateParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
! !