Inserts id to the set of functions called from this function.
| 235 | |
| 236 | // Inserts id to the set of functions called from this function. |
| 237 | void AddFunctionCallTarget(uint32_t call_target_id) { |
| 238 | function_call_targets_.insert(call_target_id); |
| 239 | } |
| 240 | |
| 241 | // Returns a set with ids of all functions called from this function. |
| 242 | const std::set<uint32_t> function_call_targets() const { |
no test coverage detected