visitRethrowExpression method

  1. @override
T? visitRethrowExpression(
  1. RethrowExpression node
)
override

Implementation

@override
T? visitRethrowExpression(RethrowExpression node) {
  stopwatch.start();
  T? result = _baseVisitor.visitRethrowExpression(node);
  stopwatch.stop();
  return result;
}