koala.dynamicjava.tree
Class AssignExpression

java.lang.Object
  extended bykoala.dynamicjava.tree.Node
      extended bykoala.dynamicjava.tree.Expression
          extended bykoala.dynamicjava.tree.BinaryExpression
              extended bykoala.dynamicjava.tree.AssignExpression
All Implemented Interfaces:
ExpressionStatement
Direct Known Subclasses:
AddAssignExpression, BitAndAssignExpression, BitOrAssignExpression, DivideAssignExpression, ExclusiveOrAssignExpression, MultiplyAssignExpression, RemainderAssignExpression, ShiftLeftAssignExpression, ShiftRightAssignExpression, SimpleAssignExpression, SubtractAssignExpression, UnsignedShiftRightAssignExpression

public abstract class AssignExpression
extends BinaryExpression
implements ExpressionStatement

This class represents the assign expression nodes of the syntax tree


Field Summary
 
Fields inherited from class koala.dynamicjava.tree.BinaryExpression
LEFT_EXPRESSION, RIGHT_EXPRESSION
 
Fields inherited from class koala.dynamicjava.tree.Node
BEGIN_COLUMN, BEGIN_LINE, END_COLUMN, END_LINE, FILENAME
 
Constructor Summary
protected AssignExpression(Expression lexp, Expression rexp, java.lang.String fn, int bl, int bc, int el, int ec)
          Initializes the expression
 
Methods inherited from class koala.dynamicjava.tree.BinaryExpression
getLeftExpression, getRightExpression, setLeftExpression, setRightExpression
 
Methods inherited from class koala.dynamicjava.tree.Node
acceptVisitor, addPropertyChangeListener, addPropertyChangeListener, firePropertyChange, firePropertyChange, firePropertyChange, getBeginColumn, getBeginLine, getEndColumn, getEndLine, getFilename, getProperties, getProperty, hasProperty, removePropertyChangeListener, removePropertyChangeListener, setBeginColumn, setBeginLine, setEndColumn, setEndLine, setFilename, setProperty
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssignExpression

protected AssignExpression(Expression lexp,
                           Expression rexp,
                           java.lang.String fn,
                           int bl,
                           int bc,
                           int el,
                           int ec)
Initializes the expression

Parameters:
lexp - the LHS expression
rexp - the RHS expression
fn - the filename
bl - the begin line
bc - the begin column
el - the end line
ec - the end column
Throws:
java.lang.IllegalArgumentException - if lexp is null or rexp is null


Copyright © 2001 Stephane Hillion. All Rights Reserved.