(f *File, line, defaultName string)
| 346 | } |
| 347 | |
| 348 | func parseGitHeaderCopyFrom(f *File, line, defaultName string) (err error) { |
| 349 | f.IsCopy = true |
| 350 | f.OldName, _, err = parseName(line, 0, 0) |
| 351 | return |
| 352 | } |
| 353 | |
| 354 | func parseGitHeaderCopyTo(f *File, line, defaultName string) (err error) { |
| 355 | f.IsCopy = true |
nothing calls this directly
no test coverage detected