findLinks method

List<DartDocumentLink> findLinks(
  1. AstNode node
)

Implementation

List<DartDocumentLink> findLinks(AstNode node) {
  _documentLinks.clear();
  node.accept(this);
  return _documentLinks;
}