(s string)
| 302 | } |
| 303 | |
| 304 | func splitLines(s string) []string { |
| 305 | out := splitLinesRegexp.FindAllString(s, -1) |
| 306 | if out[len(out)-1] == "" { |
| 307 | out = out[:len(out)-1] |
| 308 | } |
| 309 | return out |
| 310 | } |
| 311 | |
| 312 | type hunk struct { |
| 313 | fromLine int |
no outgoing calls
no test coverage detected
searching dependent graphs…