| 271 | } |
| 272 | |
| 273 | void FunctionCallGraphBuilder::add(CallGraph::Node _caller, CallGraph::Node _callee) |
| 274 | { |
| 275 | m_graph.edges[_caller].insert(_callee); |
| 276 | } |
| 277 | |
| 278 | void FunctionCallGraphBuilder::functionReferenced(CallableDeclaration const& _callable, bool _calledDirectly) |
| 279 | { |