本文整理汇总了C++中Syntax::buildTree方法的典型用法代码示例。如果您正苦于以下问题:C++ Syntax::buildTree方法的具体用法?C++ Syntax::buildTree怎么用?C++ Syntax::buildTree使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Syntax
的用法示例。
在下文中一共展示了Syntax::buildTree方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int argc, char* argv[])
{
if (argc != 2) {
cout << "No input files!" << std::endl;
return 1;
}
ifstream f(argv[1]);
if (!f) {
cout << "Cannot open file: " << argv[1] << std::endl;
return 1;
}
QFile file_syntax(":/plsql.rules");
if (!file_syntax.open(QIODevice::ReadOnly | QIODevice::Text))
{
return 1;
}
QTextStream syntax_input(&file_syntax);
Syntax syntax;
syntax.readRules(syntax_input);
syntax.print();
LexicalAnalyzer lexems(f);
// auto input_name = argv[1];
// try {
// while(true) {
// LexemPtr lexem = lexems.nextLexem();
// prinLexem(lexem,cout);
// }
// } catch (const LexicalExceptionEndOfStream&) {
// cout << input_name
// << ':' << lexems.currentReadPos().row
// << ':' << lexems.currentReadPos().column << ": "
// <<"End of file reached." << std::endl;
// } catch (const LexicalException& e) {
// cout << input_name
// << ':' << lexems.currentReadPos().row
// << ':' << lexems.currentReadPos().column << ": "
// << "Lexical error: " << e.what() << std::endl;
// }
// lexems.setCurrentLexemIndex(0);
try {
syntax.buildTree(lexems);
} catch (const SyntaxException& e) {
cout << e.what() << std::endl;
return 1;
} catch (const LexicalException& e) {
cout << e.what() << std::endl;
return 1;
}
syntax.getCurTree()->print();
cout << std::endl;
Context context;
try {
context.parseBlocks(syntax.getCurTree());
context.parseVariablesInCurrentBlocks();
context.printVariablesInCurrentBlocks();
} catch (const ContextException& e) {
cout << e.what() << std::endl;
return 1;
}
CodeGenerator code;
code.generate(syntax.getCurTree());
cout << std::endl
<< STR("Generated code:") << std::endl
<< code << std::endl;
return 0;
}