visitAugmentedInvocation method

  1. @override
T? visitAugmentedInvocation(
  1. AugmentedInvocation node
)
override

Implementation

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