public BoundDoWhileStatement(SyntaxNode syntax, BoundStatement body, BoundExpression condition, BoundLabel breakLabel, BoundLabel continueLabel) : base(syntax, breakLabel, continueLabel) { Body = body; Condition = condition; }
public BoundLabelStatement(SyntaxNode syntax, BoundLabel label) : base(syntax) { Label = label; }
protected BoundLoopStatement(SyntaxNode syntax, BoundLabel breakLabel, BoundLabel continueLabel) : base(syntax) { BreakLabel = breakLabel; ContinueLabel = continueLabel; }