PPDelegateParser.st
changeset 162 47927bdbe346
parent 24 16b3c2bb1f12
child 377 6112a403a52d
equal deleted inserted replaced
161:798f60fd396a 162:47927bdbe346
    10 
    10 
    11 !PPDelegateParser class methodsFor:'instance creation'!
    11 !PPDelegateParser class methodsFor:'instance creation'!
    12 
    12 
    13 on: aParser
    13 on: aParser
    14 	^ self new setParser: aParser
    14 	^ self new setParser: aParser
       
    15 ! !
       
    16 
       
    17 !PPDelegateParser methodsFor:'*petitanalyzer-transforming'!
       
    18 
       
    19 replace: aParser with: anotherParser
       
    20 	super replace: aParser with: anotherParser.
       
    21 	parser == aParser ifTrue: [ parser := anotherParser ]
    15 ! !
    22 ! !
    16 
    23 
    17 !PPDelegateParser methodsFor:'accessing'!
    24 !PPDelegateParser methodsFor:'accessing'!
    18 
    25 
    19 children
    26 children
    33 ! !
    40 ! !
    34 
    41 
    35 !PPDelegateParser class methodsFor:'documentation'!
    42 !PPDelegateParser class methodsFor:'documentation'!
    36 
    43 
    37 version
    44 version
    38     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPDelegateParser.st,v 1.3 2012-05-04 22:01:50 vrany Exp $'
    45     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPDelegateParser.st,v 1.4 2014-03-04 14:32:24 cg Exp $'
    39 !
    46 !
    40 
    47 
    41 version_CVS
    48 version_CVS
    42     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPDelegateParser.st,v 1.3 2012-05-04 22:01:50 vrany Exp $'
    49     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPDelegateParser.st,v 1.4 2014-03-04 14:32:24 cg Exp $'
    43 !
    50 !
    44 
    51 
    45 version_SVN
    52 version_SVN
    46     ^ '§Id: PPDelegateParser.st 2 2010-12-17 18:44:23Z vranyj1 §'
    53     ^ '$Id: PPDelegateParser.st,v 1.4 2014-03-04 14:32:24 cg Exp $'
    47 ! !
    54 ! !
       
    55