本文整理汇总了C#中Boo.Lang.Compiler.Ast.MacroStatement.get_Arguments方法的典型用法代码示例。如果您正苦于以下问题:C# MacroStatement.get_Arguments方法的具体用法?C# MacroStatement.get_Arguments怎么用?C# MacroStatement.get_Arguments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Boo.Lang.Compiler.Ast.MacroStatement
的用法示例。
在下文中一共展示了MacroStatement.get_Arguments方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: macro_application_block
public void macro_application_block(Block container)
{
MacroStatement statement = new MacroStatement();
ExpressionCollection ec = statement.get_Arguments();
Block b = statement.get_Body();
try
{
Token token = this.member();
bool flag = false;
if ((this.LA(1) == 0x3d) && tokenSet_13_.member(this.LA(2)))
{
int num = this.mark();
flag = true;
base.inputState.guessing++;
try
{
this.match(0x3d);
}
catch (RecognitionException)
{
flag = false;
}
this.rewind(num);
base.inputState.guessing--;
}
if (flag)
{
this.compound_statement(b);
}
else
{
if (!tokenSet_16_.member(this.LA(1)) || !tokenSet_44_.member(this.LA(2)))
{
throw new NoViableAltException(this.LT(1), this.getFilename());
}
this.expression_list(ec);
this.compound_statement(b);
}
if (base.inputState.guessing == 0)
{
statement.set_LexicalInfo(ToLexicalInfo(token));
statement.set_Name(token.getText());
container.Add(statement);
}
}
catch (RecognitionException exception2)
{
if (base.inputState.guessing != 0)
{
throw;
}
this.reportError(exception2);
this.recover(exception2, tokenSet_15_);
}
}