Interface NodeVisitor<R,P>

Type Parameters:
R - return type of the visitor. Use Void if the visitor does not have a return value.
P - parameter type of the visitor. Use Void if the visitor does not have a parameter.
All Known Subinterfaces:
BackwardTransferFunction<V,S>, ForwardTransferFunction<V,S>, TransferFunction<V,S>
All Known Implementing Classes:
AbstractNodeVisitor, BusyExprTransfer, ConstantPropagationTransfer, LiveVarTransfer, ReachingDefinitionTransfer

public interface NodeVisitor<R,P>
A visitor for a Node tree.