PPDelegateParser.st
changeset 4 90de244a7fa2
parent 0 739fe9b7253e
child 24 16b3c2bb1f12
equal deleted inserted replaced
3:e1b11f74e142 4:90de244a7fa2
     1 "{ Package: 'squeak:petitparser' }"
     1 "{ Package: 'stx:goodies/petitparser' }"
     2 
     2 
     3 PPParser subclass:#PPDelegateParser
     3 PPParser subclass:#PPDelegateParser
     4 	instanceVariableNames:'parser'
     4 	instanceVariableNames:'parser'
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'PetitParser-Parsers'
     7 	category:'PetitParser-Parsers'
     8 !
     8 !
     9 
     9 
    10 PPDelegateParser comment:'A parser that delegates to another parser.
    10 PPDelegateParser comment:'A parser that delegates to another parser.
    11 Instance Variables:
    11 Instance Variables:
    12 	parser	<PPParser>	The parser to delegate to.'
    12 	parser  <PPParser>      The parser to delegate to.'
    13 !
    13 !
    14 
    14 
    15 
    15 
    16 !PPDelegateParser class methodsFor:'instance creation'!
    16 !PPDelegateParser class methodsFor:'instance creation'!
    17 
    17 
    38 ! !
    38 ! !
    39 
    39 
    40 !PPDelegateParser class methodsFor:'documentation'!
    40 !PPDelegateParser class methodsFor:'documentation'!
    41 
    41 
    42 version_SVN
    42 version_SVN
    43     ^ '$Id: PPDelegateParser.st,v 1.1 2011-08-18 18:56:17 cg Exp $'
    43     ^ '$Id: PPDelegateParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
    44 ! !
    44 ! !