Checkin from browser
authorJan Vrany <jan.vrany@fit.cvut.cz>
Sat, 05 May 2012 00:00:45 +0200
changeset 19 4247b85d8584
parent 18 fc91f519ff96
child 20 46d4542c5f5e
Checkin from browser
PPMemento.st
--- a/PPMemento.st	Sat May 05 00:00:32 2012 +0200
+++ b/PPMemento.st	Sat May 05 00:00:45 2012 +0200
@@ -7,13 +7,6 @@
 	category:'PetitParser-Core'
 !
 
-PPMemento comment:'PPMemento is an internal class used by PPMemoizedParser to cache results and detect left-recursive calls.
-Instance Variables:
-	result  <Object>        The cached result.
-	count   <Integer>       The number of recursive cycles followed.
-	position        <Integer>       The position of the cached result in the input stream.'
-!
-
 
 !PPMemento class methodsFor:'instance creation'!
 
@@ -55,11 +48,19 @@
 
 initialize
 	count := 0
-
+	
 ! !
 
 !PPMemento class methodsFor:'documentation'!
 
+version
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPMemento.st,v 1.3 2012-05-04 22:00:45 vrany Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPMemento.st,v 1.3 2012-05-04 22:00:45 vrany Exp $'
+!
+
 version_SVN
-    ^ '$Id: PPMemento.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
+    ^ '§Id: PPMemento.st 2 2010-12-17 18:44:23Z vranyj1 §'
 ! !