visit method

T? visit(
  1. Expression node
)

Implementation

T? visit(Expression node) {
  node.visitChildren(this);
  return null;
}