compiler/PEGFsaParserTransition.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 24 Aug 2015 17:38:44 +0100
changeset 527 9b50ec9a6918
parent 524 f6f68d32de73
permissions -rw-r--r--
Added missing #new methods

"{ Package: 'stx:goodies/petitparser/compiler' }"

"{ NameSpace: Smalltalk }"

PEGFsaPredicateTransition subclass:#PEGFsaParserTransition
	instanceVariableNames:'parser'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-FSA'
!

!PEGFsaParserTransition methodsFor:'accessing'!

parser
    ^ parser
!

parser: anObject
    self halt: 'delete me!!'.
    parser := anObject
! !

!PEGFsaParserTransition methodsFor:'as yet unclassified'!

acceptsCodePoint: codePoint
    self halt: 'should not be sent...'.
    ^ true
!

isParser
    ^ true
! !