PPActionParser.st
changeset 21 b93d472b6e8c
parent 4 90de244a7fa2
child 161 798f60fd396a
equal deleted inserted replaced
20:46d4542c5f5e 21:b93d472b6e8c
     3 PPDelegateParser subclass:#PPActionParser
     3 PPDelegateParser subclass:#PPActionParser
     4 	instanceVariableNames:'block'
     4 	instanceVariableNames:'block'
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'PetitParser-Parsers'
     7 	category:'PetitParser-Parsers'
     8 !
       
     9 
       
    10 PPActionParser comment:'A parser that performs an action block with the successful parse result of the delegate.
       
    11 Instance Variables:
       
    12 	block   <BlockClosure>  The action block to be executed.
       
    13 '
       
    14 !
     8 !
    15 
     9 
    16 
    10 
    17 !PPActionParser class methodsFor:'instance creation'!
    11 !PPActionParser class methodsFor:'instance creation'!
    18 
    12 
    43 		ifTrue: [ element ]
    37 		ifTrue: [ element ]
    44 ! !
    38 ! !
    45 
    39 
    46 !PPActionParser class methodsFor:'documentation'!
    40 !PPActionParser class methodsFor:'documentation'!
    47 
    41 
       
    42 version
       
    43     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPActionParser.st,v 1.3 2012-05-04 22:01:11 vrany Exp $'
       
    44 !
       
    45 
       
    46 version_CVS
       
    47     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPActionParser.st,v 1.3 2012-05-04 22:01:11 vrany Exp $'
       
    48 !
       
    49 
    48 version_SVN
    50 version_SVN
    49     ^ '$Id: PPActionParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
    51     ^ '§Id: PPActionParser.st 2 2010-12-17 18:44:23Z vranyj1 §'
    50 ! !
    52 ! !