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