compiler/PPCNotNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 08 Sep 2015 03:20:10 +0100
changeset 545 ecf04090fc50
parent 515 b5316ef15274
permissions -rw-r--r--
Forge Monticello ancestry when exporting .mcz Generate ancestry based in Mercurial history and individual package's splice maps.

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

"{ NameSpace: Smalltalk }"

PPCDelegateNode subclass:#PPCNotNode
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Nodes'
!

!PPCNotNode methodsFor:'accessing'!

defaultName
    ^ #not
! !

!PPCNotNode methodsFor:'analysis'!

firstCharSet
    ^ PPCharSetPredicate on: [:e | true ] 
!

isFirstSetTerminal
    ^ true
! !

!PPCNotNode methodsFor:'visiting'!

accept: visitor
    ^ visitor visitNotNode: self
! !