Exemplo n.º 1
0
 public BoundDoWhileStatement(SyntaxNode syntax, BoundStatement body, BoundExpression condition, BoundLabel breakLabel, BoundLabel continueLabel)
     : base(syntax, breakLabel, continueLabel)
 {
     Body      = body;
     Condition = condition;
 }
Exemplo n.º 2
0
 public BoundLabelStatement(SyntaxNode syntax, BoundLabel label)
     : base(syntax)
 {
     Label = label;
 }
Exemplo n.º 3
0
 protected BoundLoopStatement(SyntaxNode syntax, BoundLabel breakLabel, BoundLabel continueLabel)
     : base(syntax)
 {
     BreakLabel    = breakLabel;
     ContinueLabel = continueLabel;
 }