Checkin from browser
authorJan Vrany <jan.vrany@fit.cvut.cz>
Sat, 05 May 2012 00:06:11 +0200
changeset 42 9b021405b8a5
parent 41 c5b10aacc813
child 43 4bc103d5f559
Checkin from browser
PPStream.st
--- a/PPStream.st	Sat May 05 00:06:00 2012 +0200
+++ b/PPStream.st	Sat May 05 00:06:11 2012 +0200
@@ -7,13 +7,10 @@
 	category:'PetitParser-Core'
 !
 
-PPStream comment:'A positional stream implementation used for parsing. It overrides some methods for optimization reasons.'
-!
-
 
 !PPStream methodsFor:'accessing'!
 
-next: anInteger
+next: anInteger 
 	"Answer up to anInteger elements of my collection. Overridden for efficiency."
 
 	| answer endPosition |
@@ -60,6 +57,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 $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPStream.st,v 1.3 2012-05-04 22:06:11 vrany Exp $'
+!
+
 version_SVN
-    ^ '$Id: PPStream.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
+    ^ '§Id: PPStream.st 2 2010-12-17 18:44:23Z vranyj1 §'
 ! !