PPParserResource.st
changeset 51 8c02dc8bbf08
parent 4 90de244a7fa2
equal deleted inserted replaced
50:db1ecd258e0c 51:8c02dc8bbf08
    10 
    10 
    11 !PPParserResource methodsFor:'accessing'!
    11 !PPParserResource methodsFor:'accessing'!
    12 
    12 
    13 parserAt: aParserClass
    13 parserAt: aParserClass
    14 	"Answer a cached instance of aParserClass."
    14 	"Answer a cached instance of aParserClass."
    15 
    15 	
    16 	^ parsers at: aParserClass name ifAbsentPut: [ aParserClass new ]
    16 	^ parsers at: aParserClass name ifAbsentPut: [ aParserClass new ]
    17 ! !
    17 ! !
    18 
    18 
    19 !PPParserResource methodsFor:'running'!
    19 !PPParserResource methodsFor:'running'!
    20 
    20 
    23 	parsers := Dictionary new
    23 	parsers := Dictionary new
    24 ! !
    24 ! !
    25 
    25 
    26 !PPParserResource class methodsFor:'documentation'!
    26 !PPParserResource class methodsFor:'documentation'!
    27 
    27 
       
    28 version
       
    29     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParserResource.st,v 1.3 2012-05-04 22:09:18 vrany Exp $'
       
    30 !
       
    31 
       
    32 version_CVS
       
    33     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParserResource.st,v 1.3 2012-05-04 22:09:18 vrany Exp $'
       
    34 !
       
    35 
    28 version_SVN
    36 version_SVN
    29     ^ '$Id: PPParserResource.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
    37     ^ '§Id: PPParserResource.st 4 2010-12-18 17:02:23Z kursjan §'
    30 ! !
    38 ! !