compiler/tests/extras/PPCLRPNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 07 Sep 2015 11:53:38 +0100
changeset 538 16e8536f5cfb
parent 528 ebfddc82b8bb
permissions -rw-r--r--
PPCConfiguration refactoring: [10/10]: Cleaned up compilation API The main compilation method is now PPParser>>compileWithOptions: Removed oither old and unused compilation methods from PPParser and other PetitCompiler classes.

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

"{ NameSpace: Smalltalk }"

Object subclass:#PPCLRPNode
	instanceVariableNames:'start stop nameRange'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Extras-Tests-LRP'
!


!PPCLRPNode methodsFor:'accessing'!

nameRange
    nameRange ifNil: [self halt: 'Error in setting up range info for styling.' ].
    ^ nameRange
!

nameRange: anObject
    nameRange := anObject
!

start
    ^ start
!

start: anObject
    start := anObject
!

start: aNumber stop: anotherNumber
    
    start := aNumber.
    stop := anotherNumber.
!

stop
    ^ stop
!

stop: anObject
    stop := anObject
! !

!PPCLRPNode methodsFor:'error handing'!

onErrorNode: aBlock parser: aPPCLRPParser
    "do nothing"
! !

!PPCLRPNode methodsFor:'testing'!

isError

    ^false.
! !

!PPCLRPNode methodsFor:'visiting'!

acceptVisitor: aPPCLRPNodeVisitor
    aPPCLRPNodeVisitor visitAnyNode: self.
! !

!PPCLRPNode class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !