visitLibraryAugmentationDirective method

  1. @override
T? visitLibraryAugmentationDirective(
  1. LibraryAugmentationDirective node
)
override

Implementation

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