Qore Programming Language Reference Manual  0.9.3
QC_AstTreeSearcher.dox.h
1 namespace astparser {
4 
9 
10 public:
12 /***/
13  constructor();
14 
15 public:
17 
25 *list findMatchingSymbols(astparser::AstTree tree, string uri, string query, bool exactMatch = False, bool fixSymbols = True, bool bareNames = False);
26 
27 public:
29 
36 *list findReferences(astparser::AstTree tree, string uri, int line, int col, bool includeDecl);
37 
38 public:
40 
45 *hash findSymbolInfo(astparser::AstTree tree, int line, int col);
46 
47 public:
49 
55 *list findSymbols(astparser::AstTree tree, string uri, bool fixSymbols = True, bool bareNames = False);
56 
57 public:
59 
65 *hash hoverInfo(astparser::AstTree tree, int kind, int line, int col);
66 };
67 };
*list findReferences(astparser::AstTree tree, string uri, int line, int col, bool includeDecl)
Find symbol references.
const True
logical True
Definition: qc_qore.dox.h:94
astparser namespace
Definition: QC_AstParser.dox.h:2
const False
logical False
Definition: qc_qore.dox.h:92
*hash findSymbolInfo(astparser::AstTree tree, int line, int col)
Find symbol info.
*hash hoverInfo(astparser::AstTree tree, int kind, int line, int col)
Hover info.
list< auto > list(...)
Returns a list of the arguments passed at the top level.
*list findSymbols(astparser::AstTree tree, string uri, bool fixSymbols=True, bool bareNames=False)
Find all symbols in a document.
hash< auto > hash(object obj)
Returns a hash of an object's members.
AstParser class.
Definition: QC_AstTreeSearcher.dox.h:8
*list findMatchingSymbols(astparser::AstTree tree, string uri, string query, bool exactMatch=False, bool fixSymbols=True, bool bareNames=False)
Find matching symbols in a document.
AstTree class.
Definition: QC_AstTree.dox.h:8
constructor()
Creates the AstTreeSearcher.