PPPluggableParser.st
changeset 55 e84f763c3447
parent 4 90de244a7fa2
child 174 e8984d5abf0f
equal deleted inserted replaced
54:3e4cde74f2ea 55:e84f763c3447
     3 PPParser subclass:#PPPluggableParser
     3 PPParser subclass:#PPPluggableParser
     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 PPPluggableParser comment:'A pluggable parser that passes the parser stream into a block. This enables users to perform manual parsing or to embed other parser frameworks into PetitParser.
       
    11 Instance Variables:
       
    12 	block   <BlockClosure>  The pluggable one-argument block.
       
    13 '
       
    14 !
     8 !
    15 
     9 
    16 
    10 
    17 !PPPluggableParser class methodsFor:'instance creation'!
    11 !PPPluggableParser class methodsFor:'instance creation'!
    18 
    12 
    45 	^ result
    39 	^ result
    46 ! !
    40 ! !
    47 
    41 
    48 !PPPluggableParser class methodsFor:'documentation'!
    42 !PPPluggableParser class methodsFor:'documentation'!
    49 
    43 
       
    44 version
       
    45     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPluggableParser.st,v 1.3 2012-05-04 22:10:02 vrany Exp $'
       
    46 !
       
    47 
       
    48 version_CVS
       
    49     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPluggableParser.st,v 1.3 2012-05-04 22:10:02 vrany Exp $'
       
    50 !
       
    51 
    50 version_SVN
    52 version_SVN
    51     ^ '$Id: PPPluggableParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
    53     ^ '§Id: PPPluggableParser.st 2 2010-12-17 18:44:23Z vranyj1 §'
    52 ! !
    54 ! !