コード例 #1
0
ファイル: GotoStatement.cs プロジェクト: Beier/Omnium
 public GotoStatement(IParseTree context, IExpression condition, GotoTargetStatement targetStatement) : base(context, condition.Yield())
 {
     TargetStatement = targetStatement;
 }
コード例 #2
0
ファイル: GotoStatement.cs プロジェクト: Beier/Omnium
 public GotoStatement(IParseTree context, GotoTargetStatement targetStatement) : base(context)
 {
     TargetStatement = targetStatement;
 }