DiffLine is a single line in the diff result.
| 18 | |
| 19 | // DiffLine is a single line in the diff result. |
| 20 | type DiffLine struct { |
| 21 | Type DiffLineType |
| 22 | Content string |
| 23 | } |
| 24 | |
| 25 | // ComputeLineDiff returns a line-level diff between oldLines and newLines. |
| 26 | // 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