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