PPStream.st
changeset 159 0a53379a1214
parent 42 9b021405b8a5
child 377 6112a403a52d
equal deleted inserted replaced
158:6e8ec5d71ae7 159:0a53379a1214
     7 	category:'PetitParser-Core'
     7 	category:'PetitParser-Core'
     8 !
     8 !
     9 
     9 
    10 
    10 
    11 !PPStream methodsFor:'accessing'!
    11 !PPStream methodsFor:'accessing'!
       
    12 
       
    13 collection
       
    14 	"Answer the underlying collection."
       
    15 	
       
    16 	^ collection
       
    17 !
    12 
    18 
    13 next: anInteger 
    19 next: anInteger 
    14 	"Answer up to anInteger elements of my collection. Overridden for efficiency."
    20 	"Answer up to anInteger elements of my collection. Overridden for efficiency."
    15 
    21 
    16 	| answer endPosition |
    22 	| answer endPosition |
    56 ! !
    62 ! !
    57 
    63 
    58 !PPStream class methodsFor:'documentation'!
    64 !PPStream class methodsFor:'documentation'!
    59 
    65 
    60 version
    66 version
    61     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.3 2012-05-04 22:06:11 vrany Exp $'
    67     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.4 2014-03-04 14:32:00 cg Exp $'
    62 !
    68 !
    63 
    69 
    64 version_CVS
    70 version_CVS
    65     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.3 2012-05-04 22:06:11 vrany Exp $'
    71     ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.4 2014-03-04 14:32:00 cg Exp $'
    66 !
    72 !
    67 
    73 
    68 version_SVN
    74 version_SVN
    69     ^ '§Id: PPStream.st 2 2010-12-17 18:44:23Z vranyj1 §'
    75     ^ '$Id: PPStream.st,v 1.4 2014-03-04 14:32:00 cg Exp $'
    70 ! !
    76 ! !
       
    77