org.waxeye.ast
Interface IASTVisitor

All Known Implementing Classes:
ArrowPrinter, SexprPrinter

public interface IASTVisitor

A visitor for IAST nodes.

Author:
Orlando Hill

Method Summary
 void visitAST(IAST<?> tree)
          Visits the tree as a AST.
 void visitChar(IChar tree)
          Visits the tree as a Char.
 void visitEmpty(IEmpty tree)
          Visits the tree as Empty.
 

Method Detail

visitAST

void visitAST(IAST<?> tree)
Visits the tree as a AST.

Parameters:
tree - The tree to visit.

visitEmpty

void visitEmpty(IEmpty tree)
Visits the tree as Empty.

Parameters:
tree - The tree to visit.

visitChar

void visitChar(IChar tree)
Visits the tree as a Char.

Parameters:
tree - The tree to visit.


Waxeye Parser Generator