Example #1
0
 public GotoStatement(IParseTree context, IExpression condition, GotoTargetStatement targetStatement) : base(context, condition.Yield())
 {
     TargetStatement = targetStatement;
 }
Example #2
0
 public GotoStatement(IParseTree context, GotoTargetStatement targetStatement) : base(context)
 {
     TargetStatement = targetStatement;
 }