예제 #1
0
파일: Targets.cs 프로젝트: clorton/IDM-CMS
 public Targets(Nullable <Label> breakLabel, Nullable <Label> continueLabel, TargetBlockType blockType, Slot finallyReturns, Statement statement)
 {
     this.breakLabel     = breakLabel;
     this.continueLabel  = continueLabel;
     this._blockType     = blockType;
     this.finallyReturns = finallyReturns;
     this.leaveLabel     = null;
     this.statement      = statement;
 }
예제 #2
0
 public Targets(Nullable<Label> breakLabel, Nullable<Label> continueLabel, TargetBlockType blockType, Slot finallyReturns, Statement statement)
 {
     this.breakLabel = breakLabel;
     this.continueLabel = continueLabel;
     this._blockType = blockType;
     this.finallyReturns = finallyReturns;
     this.leaveLabel = null;
     this.statement = statement;
 }