Ejemplo n.º 1
0
 public typeswitch_section(type typelabel, InputElement id, IList stmts)
 {
     this.labels = switch_labelList.New(new typeswitch_label(typelabel));
     this.id     = id;
     this.stmts  = (statementList)stmts;
 }
Ejemplo n.º 2
0
 public typeswitch_section(IList stmts)
 {
     this.labels = switch_labelList.New(new switch_default());
     this.id     = null;
     this.stmts  = (statementList)stmts;
 }
Ejemplo n.º 3
0
 public typeswitch_section(IList labels, IList stmts)
 {
     this.labels = (switch_labelList)labels;
     this.id     = null;
     this.stmts  = (statementList)stmts;
 }