PPMemento.st
changeset 4 90de244a7fa2
parent 0 739fe9b7253e
child 19 4247b85d8584
--- a/PPMemento.st	Mon Sep 12 19:48:53 2011 +0200
+++ b/PPMemento.st	Fri Jan 13 12:22:50 2012 +0100
@@ -1,4 +1,4 @@
-"{ Package: 'squeak:petitparser' }"
+"{ Package: 'stx:goodies/petitparser' }"
 
 Object subclass:#PPMemento
 	instanceVariableNames:'result count position'
@@ -9,9 +9,9 @@
 
 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.'
+	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.'
 !
 
 
@@ -55,11 +55,11 @@
 
 initialize
 	count := 0
-	
+
 ! !
 
 !PPMemento class methodsFor:'documentation'!
 
 version_SVN
-    ^ '$Id: PPMemento.st,v 1.1 2011-08-18 18:56:17 cg Exp $'
+    ^ '$Id: PPMemento.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
 ! !