(tab []rename)
| 770 | } |
| 771 | |
| 772 | func renameFix(tab []rename) func(*ast.File) bool { |
| 773 | return func(f *ast.File) bool { |
| 774 | return renameFixTab(f, tab) |
| 775 | } |
| 776 | } |
| 777 | |
| 778 | func parseName(s string) (ptr bool, pkg, nam string) { |
| 779 | i := strings.Index(s, ".") |
nothing calls this directly
no test coverage detected