parsers/java/PJInfixOperationNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 17 Jun 2015 16:49:28 +0100
changeset 492 fc3dbe5654c5
parent 435 3bc08fb90133
child 642 77d5fddb6462
permissions -rw-r--r--
Use #deepCopy instead of #copy when copying RB parse tree ...because #copy make a copy if child nodes but does not set their parents properly. Therefore node replacing does not work because it replaces it in wrong tree (original, not the copy).

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

"{ NameSpace: Smalltalk }"

PJExpressionNode subclass:#PJInfixOperationNode
	instanceVariableNames:'left operator right'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitJava-AST'
!

PJInfixOperationNode comment:'This node is a STUB!!!!!!!!

It''s being used for each node that consists of 2 expressions and some operation in between e.g.: +, -, =, +=, ==...'
!

!PJInfixOperationNode methodsFor:'accessing'!

left
	^ left
!

left: anObject
	left := anObject
!

operator
	^ operator
!

operator: anObject
	operator := anObject
!

right
	^ right
!

right: anObject
	right := anObject
! !

!PJInfixOperationNode methodsFor:'visiting'!

acceptVisitor: aVisitor

	^ aVisitor visitInfixOperationNode: self
! !