PPActionParser.st
changeset 4 90de244a7fa2
parent 0 739fe9b7253e
child 21 b93d472b6e8c
equal deleted inserted replaced
3:e1b11f74e142 4:90de244a7fa2
     1 "{ Package: 'squeak:petitparser' }"
     1 "{ Package: 'stx:goodies/petitparser' }"
     2 
     2 
     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 !
     8 !
     9 
     9 
    10 PPActionParser comment:'A parser that performs an action block with the successful parse result of the delegate.
    10 PPActionParser comment:'A parser that performs an action block with the successful parse result of the delegate.
    11 Instance Variables:
    11 Instance Variables:
    12 	block	<BlockClosure>	The action block to be executed.
    12 	block   <BlockClosure>  The action block to be executed.
    13 '
    13 '
    14 !
    14 !
    15 
    15 
    16 
    16 
    17 !PPActionParser class methodsFor:'instance creation'!
    17 !PPActionParser class methodsFor:'instance creation'!
    44 ! !
    44 ! !
    45 
    45 
    46 !PPActionParser class methodsFor:'documentation'!
    46 !PPActionParser class methodsFor:'documentation'!
    47 
    47 
    48 version_SVN
    48 version_SVN
    49     ^ '$Id: PPActionParser.st,v 1.1 2011-08-18 18:56:17 cg Exp $'
    49     ^ '$Id: PPActionParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
    50 ! !
    50 ! !