initial checkin
authorClaus Gittinger <cg@exept.de>
Tue, 04 Mar 2014 16:42:34 +0100
changeset 206 11938b6657cb
parent 205 0aa4e27a9bfc
child 207 7db766b0a3e7
initial checkin
analyzer/PPSentinel.st
--- /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 $'
+! !
+