public interface Visitor
Modifier and Type | Method and Description |
---|---|
void |
visit(ARRAY a)
Visitor pattern dispatch.
|
void |
visit(BOOLEAN b) |
void |
visit(CLASS c) |
void |
visit(FIELD f) |
void |
visit(FUNCTION f) |
void |
visit(INT i) |
void |
visit(NIL n) |
void |
visit(OBJECT o) |
void |
visit(RECORD r) |
void |
visit(STRING s) |
void |
visit(VOID v) |
void visit(ARRAY a)
void visit(BOOLEAN b)
void visit(CLASS c)
void visit(FIELD f)
void visit(FUNCTION f)
void visit(INT i)
void visit(NIL n)
void visit(OBJECT o)
void visit(RECORD r)
void visit(STRING s)
void visit(VOID v)