accept<T> abstract method

T? accept<T>(
  1. ParseTreeVisitor<T> visitor
)

The ParseTreeVisitor needs a double dispatch method. */

Implementation

T? accept<T>(ParseTreeVisitor<T> visitor);