visit method

T? visit(
  1. Node node
)
override

Shorthand for node.visitBy(this).

Implementation

T? visit(Node node) => node.visitBy(this);