(timeout any, timeoutSeconds any, defaultSeconds float64)
| 1586 | } |
| 1587 | |
| 1588 | func generateUnifiedDiff(path, oldContent, newContent string, contextLines int) string { |
| 1589 | if oldContent == newContent { |
| 1590 | return "" |
| 1591 | } |
| 1592 | diff, err := difflib.GetUnifiedDiffString(difflib.UnifiedDiff{ |
| 1593 | A: difflib.SplitLines(oldContent), |
nothing calls this directly
no test coverage detected