visitDotShorthandConstructorInvocation method

  1. @override
T? visitDotShorthandConstructorInvocation(
  1. DotShorthandConstructorInvocation node
)
override

Implementation

@override
T? visitDotShorthandConstructorInvocation(
  DotShorthandConstructorInvocation node,
) {
  stopwatch.start();
  T? result = _baseVisitor.visitDotShorthandConstructorInvocation(node);
  stopwatch.stop();
  return result;
}