本文整理汇总了C#中Antlr3.Tool.Grammar.GetOption方法的典型用法代码示例。如果您正苦于以下问题:C# Antlr3.Tool.Grammar.GetOption方法的具体用法?C# Antlr3.Tool.Grammar.GetOption怎么用?C# Antlr3.Tool.Grammar.GetOption使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Antlr3.Tool.Grammar
的用法示例。
在下文中一共展示了Antlr3.Tool.Grammar.GetOption方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HandleGrammarInit
private void HandleGrammarInit(Grammar g, Template recognizerST, Template outputFileST, Template headerFileST)
{
if (state.backtracking == 0)
{
Init(g);
this.recognizerST = recognizerST;
this.outputFileST = outputFileST;
this.headerFileST = headerFileST;
string superClass = (string)g.GetOption("superClass");
outputOption = (string)g.GetOption("output");
if (superClass != null)
recognizerST.SetAttribute("superClass", superClass);
if (g.type != GrammarType.Lexer)
{
object labelType = g.GetOption("ASTLabelType");
if (labelType != null)
recognizerST.SetAttribute("ASTLabelType", labelType);
}
if (g.type == GrammarType.TreeParser && g.GetOption("ASTLabelType") == null)
ErrorManager.GrammarWarning(ErrorManager.MSG_MISSING_AST_TYPE_IN_TREE_GRAMMAR, g, null, g.name);
if (g.type != GrammarType.TreeParser)
{
object labelType = g.GetOption("TokenLabelType");
if (labelType != null)
recognizerST.SetAttribute("labelType", labelType);
}
recognizerST.SetAttribute("numRules", grammar.Rules.Count);
outputFileST.SetAttribute("numRules", grammar.Rules.Count);
headerFileST.SetAttribute("numRules", grammar.Rules.Count);
}
}