PPPredicateParser.st
changeset 177 c3dfdd9bc9b6
parent 23 93f28e32de35
equal deleted inserted replaced
176:0c000acd9ad7 177:c3dfdd9bc9b6
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'PetitParser-Parsers'
     7 	category:'PetitParser-Parsers'
     8 !
     8 !
     9 
     9 
       
    10 
       
    11 !PPPredicateParser methodsFor:'*petitanalyzer-matching'!
       
    12 
       
    13 match: aParser inContext: aDictionary seen: anIdentitySet
       
    14 	^ (super match: aParser inContext: aDictionary seen: anIdentitySet) and: [ self block = aParser block and: [ self message = aParser message ] ]
       
    15 ! !
    10 
    16 
    11 !PPPredicateParser methodsFor:'accessing'!
    17 !PPPredicateParser methodsFor:'accessing'!
    12 
    18 
    13 block
    19 block
    14 	"Answer the predicate block of the receiver."
    20 	"Answer the predicate block of the receiver."
    30 ! !
    36 ! !
    31 
    37 
    32 !PPPredicateParser class methodsFor:'documentation'!
    38 !PPPredicateParser class methodsFor:'documentation'!
    33 
    39 
    34 version
    40 version
    35     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPredicateParser.st,v 1.3 2012-05-04 22:01:37 vrany Exp $'
    41     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPredicateParser.st,v 1.4 2014-03-04 14:33:21 cg Exp $'
    36 !
    42 !
    37 
    43 
    38 version_CVS
    44 version_CVS
    39     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPredicateParser.st,v 1.3 2012-05-04 22:01:37 vrany Exp $'
    45     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPredicateParser.st,v 1.4 2014-03-04 14:33:21 cg Exp $'
    40 !
    46 !
    41 
    47 
    42 version_SVN
    48 version_SVN
    43     ^ '§Id: PPPredicateParser.st 2 2010-12-17 18:44:23Z vranyj1 §'
    49     ^ '$Id: PPPredicateParser.st,v 1.4 2014-03-04 14:33:21 cg Exp $'
    44 ! !
    50 ! !
       
    51