analyzer/PPSentinel.st
changeset 206 11938b6657cb
child 286 2d2cbff6ee57
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/analyzer/PPSentinel.st	Tue Mar 04 16:42:34 2014 +0100
@@ -0,0 +1,33 @@
+"{ Package: 'stx:goodies/petitparser/analyzer' }"
+
+PPEpsilonParser subclass:#PPSentinel
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitAnalyzer-Core'
+!
+
+PPSentinel class instanceVariableNames:'instance'
+
+"
+ No other class instance variables are inherited by this class.
+"
+!
+
+
+!PPSentinel class methodsFor:'instance creation'!
+
+instance
+    ^ instance ifNil:[ instance := self new ].
+! !
+
+!PPSentinel class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/analyzer/PPSentinel.st,v 1.1 2014-03-04 15:42:34 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/petitparser/analyzer/PPSentinel.st,v 1.1 2014-03-04 15:42:34 cg Exp $'
+! !
+