analyzer/PPSentinel.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 29 Aug 2015 07:56:14 +0100
changeset 534 a949c4fe44df
parent 378 53d66ecfeb1b
permissions -rw-r--r--
PPCConfiguration refactoring: [6/10]: use #runPass: instead of self-sends. ...in PPCConfiguration>>invokePhases. This is a preparation for removing #invokePhases completely and configuring the compilation via list of phases.

"{ 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.2 2014-03-04 20:27:45 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/analyzer/PPSentinel.st,v 1.2 2014-03-04 20:27:45 cg Exp $'
! !