Checkin from browser
authorJan Vrany <jan.vrany@fit.cvut.cz>
Sat, 05 May 2012 00:01:37 +0200
changeset 23 93f28e32de35
parent 22 c540c8649226
child 24 16b3c2bb1f12
Checkin from browser
PPPredicateParser.st
--- a/PPPredicateParser.st	Sat May 05 00:01:24 2012 +0200
+++ b/PPPredicateParser.st	Sat May 05 00:01:37 2012 +0200
@@ -7,26 +7,18 @@
 	category:'PetitParser-Parsers'
 !
 
-PPPredicateParser comment:'An abstract parser that accepts if a given predicate holds.
-Instance Variables:
-	predicate       <BlockClosure>  The block testing for the predicate.
-	predicateMessage        <String>        The error message of the predicate.
-	negated <BlockClosure>  The block testing for the negation of the predicate.
-	negatedMessage  <String>        The error message of the negated predicate.'
-!
-
 
 !PPPredicateParser methodsFor:'accessing'!
 
 block
 	"Answer the predicate block of the receiver."
-
+	
 	^ predicate
 !
 
 message
 	"Answer the failure message."
-
+	
 	^ predicateMessage
 ! !
 
@@ -39,6 +31,14 @@
 
 !PPPredicateParser class methodsFor:'documentation'!
 
+version
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPredicateParser.st,v 1.3 2012-05-04 22:01:37 vrany Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPPredicateParser.st,v 1.3 2012-05-04 22:01:37 vrany Exp $'
+!
+
 version_SVN
-    ^ '$Id: PPPredicateParser.st,v 1.2 2012-01-13 11:22:50 cg Exp $'
+    ^ '§Id: PPPredicateParser.st 2 2010-12-17 18:44:23Z vranyj1 §'
 ! !