Constructor
| 120 | |
| 121 | /// Constructor |
| 122 | CallGraph::CallGraph(CGEK k): kind(k) |
| 123 | { |
| 124 | callGraphNodeNum = 0; |
| 125 | numOfResolvedIndCallEdge = 0; |
| 126 | } |
| 127 | |
| 128 | /// Copy constructor |
| 129 | CallGraph::CallGraph(const CallGraph& other) |
nothing calls this directly
no test coverage detected