visitDotShorthandInvocation method

  1. @override
T? visitDotShorthandInvocation(
  1. DotShorthandInvocation node
)
override

Implementation

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