PPFailure.st
changeset 45 ca9fad0faa21
parent 4 90de244a7fa2
child 377 6112a403a52d
--- a/PPFailure.st	Sat May 05 00:08:04 2012 +0200
+++ b/PPFailure.st	Sat May 05 00:08:15 2012 +0200
@@ -7,13 +7,6 @@
 	category:'PetitParser-Core'
 !
 
-PPFailure comment:'The failure object in PetitParser. It is the only class that responds to #isPetitFailure with true. It contains an error message and a position of the occurrence of the failure.
-Instance Variables:
-	message <String>        The error message of this failure.
-	position        <Integer>       The position of this failure in the input stream.
-'
-!
-
 
 !PPFailure class methodsFor:'instance creation'!
 
@@ -25,7 +18,7 @@
 
 message
 	"Answer a human readable error message of this parse failure."
-
+	
 	^ message
 !
 
@@ -58,6 +51,14 @@
 
 !PPFailure class methodsFor:'documentation'!
 
+version
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPFailure.st,v 1.3 2012-05-04 22:08:15 vrany Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPFailure.st,v 1.3 2012-05-04 22:08:15 vrany Exp $'
+!
+
 version_SVN
-    ^ '$Id: PPFailure.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
+    ^ '§Id: PPFailure.st 2 2010-12-17 18:44:23Z vranyj1 §'
 ! !