(l []byte)
| 289 | } |
| 290 | |
| 291 | func isAdditionLine(l []byte) bool { |
| 292 | return len(l) > 0 && l[0] == '+' |
| 293 | } |
| 294 | |
| 295 | func isRemovalLine(l []byte) bool { |
| 296 | return len(l) > 0 && l[0] == '-' |
no outgoing calls
no test coverage detected
searching dependent graphs…