visitBy<T> method

T? visitBy<T>(
  1. Visitor<T> v
)
override

Calls the relevant visit method on the visitor.

Implementation

visitBy<T>(Visitor<T> v) => v.visitBlock(this);