visit method

T? visit(
  1. ParseTree tree
)

{@inheritDoc}

The default implementation calls {@link ParseTree#accept} on the specified tree.

Implementation

T? visit(ParseTree tree) {
  return tree.accept(this);
}