Ejemplo n.º 1
0
 public CallGraph(CGNode root)
 {
     this.root = root;
 }
Ejemplo n.º 2
0
 public CGNode(MethodDefinition method, CGNode caller)
 {
     this.method = method;
     this.caller = caller;
 }
Ejemplo n.º 3
0
 public CallGraph(CGNode root, int depth)
 {
     this.root  = root;
     this.depth = depth;
 }