makeGoPackage
()
| 15 | |
| 16 | // makeGoPackage |
| 17 | func makeGoPackage() { |
| 18 | gopk := types.NewPackage("go", "go") |
| 19 | goPackage = &Package{pkg: gopk, syms: universe, objs: map[string]Object{}} |
| 20 | Packages = append(Packages, goPackage) |
| 21 | } |
| 22 | |
| 23 | // addStdSliceMaps adds std Slice and Map types to universe |
| 24 | func addStdSliceMaps() { |
no outgoing calls
no test coverage detected