| 24 | } |
| 25 | |
| 26 | Ref<FileDiffResult> DiffResult::get_file_diff(const String &p_path) const { |
| 27 | if (file_diffs.has(p_path)) { |
| 28 | return file_diffs[p_path]; |
| 29 | } |
| 30 | return Ref<FileDiffResult>(); |
| 31 | } |
| 32 | |
| 33 | Dictionary DiffResult::get_file_diffs() const { |
| 34 | Dictionary result; |
nothing calls this directly
no test coverage detected