Qore Programming Language Reference Manual  0.9.4
QC_AstParser.dox.h
1 namespace astparser {
4 
8 class AstParser {
9 
10 public:
12 /***/
13  constructor();
14 
15 public:
17 
20 
21 public:
23 
25 int getErrorCount();
26 
27 public:
29 
32 *AstTree parseFile(string filename);
33 
34 public:
36 
39 *AstTree parseString(string str);
40 };
41 };
AstParser class.
Definition: QC_AstParser.dox.h:8
*AstTree parseFile(string filename)
Parse file.
astparser namespace
Definition: QC_AstParser.dox.h:2
int getErrorCount()
Get parse error count.
list< auto > list(...)
Returns a list of the arguments passed at the top level.
constructor()
Creates the AstParser.
*AstTree parseString(string str)
Parse string.
*list getDiagnostics()
Get diagnostics.
AstTree class.
Definition: QC_AstTree.dox.h:8