(c devconfig.Config)
| 196 | } |
| 197 | |
| 198 | func packagesVersionedNames(c devconfig.Config) []string { |
| 199 | result := make([]string, 0, len(c.Root.TopLevelPackages())) |
| 200 | for _, p := range c.Root.TopLevelPackages() { |
| 201 | result = append(result, p.VersionedName()) |
| 202 | } |
| 203 | return result |
| 204 | } |
no test coverage detected