analyzer/PPSentinel.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 04 Sep 2015 14:06:56 +0100
changeset 535 a8feb0f47574
parent 378 53d66ecfeb1b
permissions -rw-r--r--
PPCConfiguration refactoring: [7/10]: allow to configure passes ...run during compilation by setting a collection of passes to run. Got rid of PPCPluggableConfiguration and PPCConfiguration subclasses. Removed a bunch of options used to suppress certain passes.

"{ 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 $'
! !