Пример #1
0
 /// <summary>
 /// Creates a new instance of the <see cref="BasicControlFlowRegion{TInstruction}"/> class.
 /// </summary>
 public BasicControlFlowRegion()
 {
     Regions = new RegionCollection <TInstruction>(this);
     Nodes   = new RegionNodeCollection <TInstruction>(this);
 }
Пример #2
0
 /// <summary>
 /// Creates a new instance of the <see cref="ScopeRegion{TInstruction}"/> class.
 /// </summary>
 public ScopeRegion()
 {
     Regions = new RegionCollection <TInstruction, ControlFlowRegion <TInstruction> >(this);
     Nodes   = new RegionNodeCollection <TInstruction>(this);
 }