PPListParser.st
changeset 4 90de244a7fa2
parent 0 739fe9b7253e
child 56 e6c555201a3a
equal deleted inserted replaced
3:e1b11f74e142 4:90de244a7fa2
     1 "{ Package: 'squeak:petitparser' }"
     1 "{ Package: 'stx:goodies/petitparser' }"
     2 
     2 
     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 !
     8 !
     9 
     9 
    10 PPListParser comment:'Abstract parser that parses a list of things in some way (to be specified by the subclasses).
    10 PPListParser comment:'Abstract parser that parses a list of things in some way (to be specified by the subclasses).
    11 Instance Variables:
    11 Instance Variables:
    12 	parsers	<SequenceableCollection of: PPParser>	A sequence of other parsers to delegate to.'
    12 	parsers <SequenceableCollection of: PPParser>   A sequence of other parsers to delegate to.'
    13 !
    13 !
    14 
    14 
    15 
    15 
    16 !PPListParser class methodsFor:'instance creation'!
    16 !PPListParser class methodsFor:'instance creation'!
    17 
    17 
    56 ! !
    56 ! !
    57 
    57 
    58 !PPListParser class methodsFor:'documentation'!
    58 !PPListParser class methodsFor:'documentation'!
    59 
    59 
    60 version_SVN
    60 version_SVN
    61     ^ '$Id: PPListParser.st,v 1.1 2011-08-18 18:56:17 cg Exp $'
    61     ^ '$Id: PPListParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
    62 ! !
    62 ! !