| 114 | } |
| 115 | |
| 116 | type DiffLine struct { |
| 117 | Origin DiffLineType |
| 118 | OldLineno int |
| 119 | NewLineno int |
| 120 | NumLines int |
| 121 | Content string |
| 122 | } |
| 123 | |
| 124 | func diffLineFromC(line *C.git_diff_line) DiffLine { |
| 125 | return DiffLine{ |
nothing calls this directly
no outgoing calls
no test coverage detected