parsers/java/PJParameterDeclaratorNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 24 Nov 2015 19:37:14 +0100
changeset 553 d83cb4945d5e
parent 436 e1c44b571db9
permissions -rw-r--r--
Oops, forgot to export PETITCOMPILER_DATA_DIRECTORY variable ...so Smalltalk code could not read it. Also fixed test for "include" scripts so they are not downloaded again when already downloaded.

"{ Package: 'stx:goodies/petitparser/parsers/java' }"

"{ NameSpace: Smalltalk }"

PJASTNode subclass:#PJParameterDeclaratorNode
	instanceVariableNames:'modifiers type identifier arrayLevel'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitJava-AST'
!

!PJParameterDeclaratorNode methodsFor:'accessing'!

arrayLevel
	^ arrayLevel
!

arrayLevel: anObject
	arrayLevel := anObject
!

identifier
	^ identifier
!

identifier: anObject
	identifier := anObject
!

modifiers
	^ modifiers
!

modifiers: anObject
	modifiers := anObject
!

type
	^ type
!

type: anObject
	type := anObject
! !

!PJParameterDeclaratorNode methodsFor:'visiting'!

acceptVisitor: aVisitor

	^ aVisitor visitParameterDeclaratorNode: self
! !