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