accept<T> method

  1. @Deprecated('Use Element2 and accept2() instead')
  2. @override
T? accept<T>(
  1. ElementVisitor<T> visitor
)
inherited

Uses the given visitor to visit this element.

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

Implementation

@Deprecated('Use Element2 and accept2() instead')
@override
T? accept<T>(ElementVisitor<T> visitor) => visitor.visitFieldElement(this);