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