# HG changeset patch # User Jan Vrany # Date 1336169295 -7200 # Node ID ca9fad0faa217fea8bae941fa1c2e45302f3341d # Parent 16f1a2fdc0d7949bc69fdd73232b1b0282fed3c2 Checkin from browser diff -r 16f1a2fdc0d7 -r ca9fad0faa21 PPFailure.st --- 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 The error message of this failure. - position 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 §' ! !