| 96 | } |
| 97 | |
| 98 | type DiffHunk struct { |
| 99 | OldStart int |
| 100 | OldLines int |
| 101 | NewStart int |
| 102 | NewLines int |
| 103 | Header string |
| 104 | } |
| 105 | |
| 106 | func diffHunkFromC(hunk *C.git_diff_hunk) DiffHunk { |
| 107 | return DiffHunk{ |
nothing calls this directly
no outgoing calls
no test coverage detected