visitSwitchExpressionCase method

  1. @override
T? visitSwitchExpressionCase(
  1. SwitchExpressionCase node
)
override

Implementation

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