Example #1
0
 public ControlFlowGraph(Subroutine subroutine, object methodRepository)
 {
     this.method_subroutine = subroutine;
     this.method_repository = methodRepository;
 }
Example #2
0
 protected CFGBlock(Subroutine subroutine, ref int idGen)
 {
     this.Index = idGen++;
     Subroutine = subroutine;
 }