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