Example #1
0
 public AstContinue(Parser parser, Position startPos, Position endPos, AstLabelRef label = null) : base(parser,
                                                                                                        startPos, endPos, label)
 {
 }
Example #2
0
 public AstLoopControl(Parser parser, Position startPos, Position endPos, AstLabelRef label = null) : base(
         parser, startPos, endPos)
 {
     Label = label;
 }