visitPropertyAccess method
Implementation
@override
T? visitPropertyAccess(PropertyAccess node) {
stopwatch.start();
T? result = _baseVisitor.visitPropertyAccess(node);
stopwatch.stop();
return result;
}
@override
T? visitPropertyAccess(PropertyAccess node) {
stopwatch.start();
T? result = _baseVisitor.visitPropertyAccess(node);
stopwatch.stop();
return result;
}