DiffLine is a single line in the diff result.
| 15 | |
| 16 | // DiffLine is a single line in the diff result. |
| 17 | type DiffLine struct { |
| 18 | Type DiffLineType |
| 19 | Content string |
| 20 | } |
| 21 | |
| 22 | // ComputeLineDiff returns a line-level diff between oldLines and newLines. |
| 23 | // Uses Myers-style LCS to find common subsequences, then emits context/added/deleted lines. |
nothing calls this directly
no outgoing calls
no test coverage detected