Esempio n. 1
0
 public FlowBreakStatement(FlowBreakType type, Expression value)
 {
     this.Type  = type;
     this.Value = value.NotNull();
 }
Esempio n. 2
0
 public FlowBreakStatement(FlowBreakType type)
 {
     this.Type = type;
 }