| 20 | } |
| 21 | |
| 22 | void DiffResult::set_file_diff(const String &p_path, const Ref<FileDiffResult> &p_diff) { |
| 23 | file_diffs[p_path] = p_diff; |
| 24 | } |
| 25 | |
| 26 | Ref<FileDiffResult> DiffResult::get_file_diff(const String &p_path) const { |
| 27 | if (file_diffs.has(p_path)) { |
no outgoing calls
no test coverage detected