| 140 | } |
| 141 | |
| 142 | type BlameHunk struct { |
| 143 | LinesInHunk uint16 |
| 144 | FinalCommitId *Oid |
| 145 | FinalStartLineNumber uint16 |
| 146 | FinalSignature *Signature |
| 147 | OrigCommitId *Oid |
| 148 | OrigPath string |
| 149 | OrigStartLineNumber uint16 |
| 150 | OrigSignature *Signature |
| 151 | Boundary bool |
| 152 | } |
| 153 | |
| 154 | func blameHunkFromC(hunk *C.git_blame_hunk) BlameHunk { |
| 155 | return BlameHunk{ |
nothing calls this directly
no outgoing calls
no test coverage detected