class: PPStream
authorClaus Gittinger <cg@exept.de>
Tue, 04 Mar 2014 15:32:00 +0100
changeset 159 0a53379a1214
parent 158 6e8ec5d71ae7
child 160 24352e941a6d
class: PPStream added: #collection
PPStream.st
--- a/PPStream.st	Tue Mar 04 15:03:22 2014 +0100
+++ b/PPStream.st	Tue Mar 04 15:32:00 2014 +0100
@@ -10,6 +10,12 @@
 
 !PPStream methodsFor:'accessing'!
 
+collection
+	"Answer the underlying collection."
+	
+	^ collection
+!
+
 next: anInteger 
 	"Answer up to anInteger elements of my collection. Overridden for efficiency."
 
@@ -58,13 +64,14 @@
 !PPStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.3 2012-05-04 22:06:11 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.4 2014-03-04 14:32:00 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.3 2012-05-04 22:06:11 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.4 2014-03-04 14:32:00 cg Exp $'
 !
 
 version_SVN
-    ^ '§Id: PPStream.st 2 2010-12-17 18:44:23Z vranyj1 §'
+    ^ '$Id: PPStream.st,v 1.4 2014-03-04 14:32:00 cg Exp $'
 ! !
+