visitAugmentationImportDirective method

  1. @override
T? visitAugmentationImportDirective(
  1. AugmentationImportDirective node
)
override

Implementation

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