PPEpsilonParser.st
changeset 0 739fe9b7253e
child 4 90de244a7fa2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PPEpsilonParser.st	Thu Aug 18 20:56:17 2011 +0200
@@ -0,0 +1,24 @@
+"{ Package: 'squeak:petitparser' }"
+
+PPParser subclass:#PPEpsilonParser
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitParser-Parsers'
+!
+
+PPEpsilonParser comment:'A parser that consumes nothing and always succeeds.'
+!
+
+
+!PPEpsilonParser methodsFor:'parsing'!
+
+parseOn: aStream
+	^ nil
+! !
+
+!PPEpsilonParser class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id: PPEpsilonParser.st,v 1.1 2011-08-18 18:56:17 cg Exp $'
+! !