| 316 | } |
| 317 | |
| 318 | bool ExecutableManager::AppendExecutable(const Executable& executable) { |
| 319 | this->data.push_back(executable); |
| 320 | return true; |
| 321 | } |
| 322 | |
| 323 | bool ExecutableManager::AppendExecutable(const Path& executable_path) { |
| 324 | this->last_path_executable = executable_path; |
no test coverage detected