예제 #1
0
파일: Statements.cs 프로젝트: MasterQ32/psi
 public FlowBreakStatement(FlowBreakType type, Expression value)
 {
     this.Type  = type;
     this.Value = value.NotNull();
 }
예제 #2
0
파일: Statements.cs 프로젝트: MasterQ32/psi
 public FlowBreakStatement(FlowBreakType type)
 {
     this.Type = type;
 }