PPAndParser.st
changeset 49 9852b214d4dd
parent 4 90de244a7fa2
child 376 a2656b27cace
equal deleted inserted replaced
48:5a795e7690d4 49:9852b214d4dd
     3 PPDelegateParser subclass:#PPAndParser
     3 PPDelegateParser subclass:#PPAndParser
     4 	instanceVariableNames:''
     4 	instanceVariableNames:''
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'PetitParser-Parsers'
     7 	category:'PetitParser-Parsers'
     8 !
       
     9 
       
    10 PPAndParser comment:'The and-predicate, a parser that succeeds whenever its delegate does, but consumes the input stream [Parr 1994, 1995].'
       
    11 !
     8 !
    12 
     9 
    13 
    10 
    14 !PPAndParser methodsFor:'operations'!
    11 !PPAndParser methodsFor:'operations'!
    15 
    12 
    27 	^ element
    24 	^ element
    28 ! !
    25 ! !
    29 
    26 
    30 !PPAndParser class methodsFor:'documentation'!
    27 !PPAndParser class methodsFor:'documentation'!
    31 
    28 
       
    29 version
       
    30     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPAndParser.st,v 1.3 2012-05-04 22:08:57 vrany Exp $'
       
    31 !
       
    32 
       
    33 version_CVS
       
    34     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPAndParser.st,v 1.3 2012-05-04 22:08:57 vrany Exp $'
       
    35 !
       
    36 
    32 version_SVN
    37 version_SVN
    33     ^ '$Id: PPAndParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
    38     ^ '§Id: PPAndParser.st 2 2010-12-17 18:44:23Z vranyj1 §'
    34 ! !
    39 ! !