(load moduleLoadRequest)
| 957 | } |
| 958 | |
| 959 | func moduleLoadJobName(load moduleLoadRequest) string { |
| 960 | prefix := "load module: " |
| 961 | if load.extra { |
| 962 | prefix = "load extra module: " |
| 963 | } |
| 964 | return prefix + moduleProgressName(load.mod) |
| 965 | } |
| 966 | |
| 967 | func moduleLoadErr(load moduleLoadRequest, err error) error { |
| 968 | prefix := "loading module" |
no test coverage detected