(f *File, line, defaultName string)
| 352 | } |
| 353 | |
| 354 | func parseGitHeaderCopyTo(f *File, line, defaultName string) (err error) { |
| 355 | f.IsCopy = true |
| 356 | f.NewName, _, err = parseName(line, 0, 0) |
| 357 | return |
| 358 | } |
| 359 | |
| 360 | func parseGitHeaderRenameFrom(f *File, line, defaultName string) (err error) { |
| 361 | f.IsRename = true |
nothing calls this directly
no test coverage detected