accept<T> abstract method

T? accept<T>(
  1. ElementVisitor<T> visitor
)

Uses the given visitor to visit this element.

Returns the value returned by the visitor as a result of visiting this element.

Implementation

T? accept<T>(ElementVisitor<T> visitor);