accept<T> method
Uses the given visitor to visit this element.
Returns the value returned by the visitor as a result of visiting this element.
Implementation
@override
@trackedDirectlyOpaque
T? accept<T>(ElementVisitor2<T> visitor) {
globalResultRequirements?.recordOpaqueApiUse(this, 'accept');
return visitor.visitFieldElement(this);
}