compiler/PPCTokenChoiceNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 15 Jun 2015 19:13:49 +0100
changeset 488 19a9c25960ef
parent 452 9f4558b3be66
permissions -rw-r--r--
Avoid creation of intermediate collection for mapped action nodes.

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

"{ NameSpace: Smalltalk }"

PPCChoiceNode subclass:#PPCTokenChoiceNode
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Nodes'
!

!PPCTokenChoiceNode methodsFor:'as yet unclassified'!

accept: visitor
    visitor visitTokenChoiceNode: self.
! !