PPCompositeParserTest.st
changeset 4 90de244a7fa2
parent 0 739fe9b7253e
--- a/PPCompositeParserTest.st	Mon Sep 12 19:48:53 2011 +0200
+++ b/PPCompositeParserTest.st	Fri Jan 13 12:22:50 2012 +0100
@@ -1,4 +1,4 @@
-"{ Package: 'squeak:petitparser' }"
+"{ Package: 'stx:goodies/petitparser' }"
 
 PPAbstractParseTest subclass:#PPCompositeParserTest
 	instanceVariableNames:'parser result'
@@ -32,11 +32,11 @@
 
 !PPCompositeParserTest methodsFor:'parsing'!
 
-fail: aString rule: aSymbol 
+fail: aString rule: aSymbol
 	| production |
 	production := self parserInstance
 		productionAt: aSymbol.
-	result := production end 
+	result := production end
 		parse: aString.
 	self
 		assert: result isPetitFailure
@@ -44,7 +44,7 @@
 	^ result
 !
 
-parse: aString 
+parse: aString
 	^ self parse: aString rule: #start
 !
 
@@ -86,5 +86,5 @@
 !PPCompositeParserTest class methodsFor:'documentation'!
 
 version_SVN
-    ^ '$Id: PPCompositeParserTest.st,v 1.1 2011-08-18 18:56:17 cg Exp $'
+    ^ '$Id: PPCompositeParserTest.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
 ! !