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