ast
Class ExprList

java.lang.Object
  extended by ast.ASTNode
      extended by ast.ListNode
          extended by ast.ExprList

public class ExprList
extends ListNode

The ExprList class represents a list of expressions.

See Also:
ListNode, Expr

Field Summary
 
Fields inherited from class ast.ASTNode
charNum, lineNum, lineStr
 
Constructor Summary
ExprList(int lineNum)
          Expr list constructor
 
Method Summary
 java.lang.Object accept(visitor.Visitor v, java.lang.Object o)
          Visitor method
 
Methods inherited from class ast.ListNode
addElement, getIterator, getSize
 
Methods inherited from class ast.ASTNode
getLineNum
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExprList

public ExprList(int lineNum)
Expr list constructor

Parameters:
lineNum - source line number corresponding to this AST node
Method Detail

accept

public java.lang.Object accept(visitor.Visitor v,
                               java.lang.Object o)
Visitor method

Specified by:
accept in class ListNode
Parameters:
v - visitor object
o - object to pass down
Returns:
result of visiting this node
See Also:
Visitor