# HG changeset patch # User Claus Gittinger # Date 1393947754 -3600 # Node ID 11938b6657cb3972f75de17ec2b135e64ee8f48d # Parent 0aa4e27a9bfc6657de9685e11c1b47e05ce18420 initial checkin diff -r 0aa4e27a9bfc -r 11938b6657cb 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 $' +! ! +