PPTokenParser.st
changeset 4 90de244a7fa2
parent 0 739fe9b7253e
child 16 3b8de4bf5696
--- a/PPTokenParser.st	Mon Sep 12 19:48:53 2011 +0200
+++ b/PPTokenParser.st	Fri Jan 13 12:22:50 2012 +0100
@@ -1,4 +1,4 @@
-"{ Package: 'squeak:petitparser' }"
+"{ Package: 'stx:goodies/petitparser' }"
 
 PPFlattenParser subclass:#PPTokenParser
 	instanceVariableNames:'tokenClass'
@@ -9,7 +9,7 @@
 
 PPTokenParser comment:'A parser that answers a token of the range my delegate parses.
 Instance Variables:
-	tokenClass	<PPToken class>	The token sub-class to be used.'
+	tokenClass      <PPToken class> The token sub-class to be used.'
 !
 
 
@@ -27,7 +27,7 @@
 
 initialize
 	tokenClass := self defaultTokenClass
-	
+
 ! !
 
 !PPTokenParser methodsFor:'private'!
@@ -43,5 +43,5 @@
 !PPTokenParser class methodsFor:'documentation'!
 
 version_SVN
-    ^ '$Id: PPTokenParser.st,v 1.1 2011-08-18 18:56:17 cg Exp $'
+    ^ '$Id: PPTokenParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
 ! !