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