spiglet.syntaxtree
Interface Node

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
NodeListInterface
All Known Implementing Classes:
BinOp, Call, CJumpStmt, ErrorStmt, Exp, Goal, HAllocate, HLoadStmt, HStoreStmt, IntegerLiteral, JumpStmt, Label, MoveStmt, NodeChoice, NodeList, NodeListOptional, NodeOptional, NodeSequence, NodeToken, NoOpStmt, Operator, PrintStmt, Procedure, SimpleExp, Stmt, StmtExp, StmtList, Temp

public interface Node
extends java.io.Serializable

The interface which all syntax tree classes must implement.


Method Summary
<R> R
accept(GJNoArguVisitor<R> v)
           
<R,A> R
accept(GJVisitor<R,A> v, A argu)
           
<A> void
accept(GJVoidVisitor<A> v, A argu)
           
 void accept(Visitor v)
           
 

Method Detail

accept

void accept(Visitor v)

accept

<R,A> R accept(GJVisitor<R,A> v,
               A argu)

accept

<R> R accept(GJNoArguVisitor<R> v)

accept

<A> void accept(GJVoidVisitor<A> v,
                A argu)