visitNullable method

R? visitNullable(
  1. AstNode? e,
  2. A arg
)

Visits the node e if it's not null. Otherwise, do nothing.

Implementation

R? visitNullable(AstNode? e, A arg) => e?.accept(this, arg);