PPListParser.st
changeset 56 e6c555201a3a
parent 4 90de244a7fa2
child 169 cba3a51b9704
equal deleted inserted replaced
55:e84f763c3447 56:e6c555201a3a
     3 PPParser subclass:#PPListParser
     3 PPParser subclass:#PPListParser
     4 	instanceVariableNames:'parsers'
     4 	instanceVariableNames:'parsers'
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'PetitParser-Parsers'
     7 	category:'PetitParser-Parsers'
     8 !
       
     9 
       
    10 PPListParser comment:'Abstract parser that parses a list of things in some way (to be specified by the subclasses).
       
    11 Instance Variables:
       
    12 	parsers <SequenceableCollection of: PPParser>   A sequence of other parsers to delegate to.'
       
    13 !
     8 !
    14 
     9 
    15 
    10 
    16 !PPListParser class methodsFor:'instance creation'!
    11 !PPListParser class methodsFor:'instance creation'!
    17 
    12 
    55 	parsers := aCollection asArray
    50 	parsers := aCollection asArray
    56 ! !
    51 ! !
    57 
    52 
    58 !PPListParser class methodsFor:'documentation'!
    53 !PPListParser class methodsFor:'documentation'!
    59 
    54 
       
    55 version
       
    56     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPListParser.st,v 1.3 2012-05-04 22:10:13 vrany Exp $'
       
    57 !
       
    58 
       
    59 version_CVS
       
    60     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPListParser.st,v 1.3 2012-05-04 22:10:13 vrany Exp $'
       
    61 !
       
    62 
    60 version_SVN
    63 version_SVN
    61     ^ '$Id: PPListParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
    64     ^ '§Id: PPListParser.st 2 2010-12-17 18:44:23Z vranyj1 §'
    62 ! !
    65 ! !