golang.org/x/tools/go/packages.Package.PkgPath (field)
25 uses
golang.org/x/tools/go/packages (current package)
golist.go#L326: PkgPath: query,
golist.go#L339: filepath.ToSlash(response.Packages[0].PkgPath) == filepath.ToSlash(query) {
golist.go#L599: pkg.PkgPath = pkg.ID[:i]
golist.go#L601: pkg.PkgPath = pkg.ID
golist.go#L604: if pkg.PkgPath == "unsafe" {
packages.go#L438: PkgPath string
packages.go#L639: PkgPath: p.PkgPath,
packages.go#L668: PkgPath: flat.PkgPath,
packages.go#L802: exportDataInvalid := len(ld.Overlay) > 0 || pkg.ExportFile == "" && pkg.PkgPath != "unsafe"
packages.go#L811: (ld.Mode&(NeedTypes|NeedTypesInfo) != 0 && exportDataInvalid)) && pkg.PkgPath != "unsafe"
packages.go#L996: ld.pkgs[i].PkgPath = ""
packages.go#L1047: if lpkg.PkgPath == "unsafe" {
packages.go#L1064: lpkg.Types = types.NewPackage(lpkg.PkgPath, lpkg.Name)
packages.go#L1476: if lpkg.PkgPath == "" {
packages.go#L1551: view[lpkg.PkgPath] = lpkg.Types
packages.go#L1561: tpkg, err := gcexportdata.Read(r, ld.Fset, view, lpkg.PkgPath)
packages.go#L1571: log.Panicf("golang.org/x/tools/go/packages: unexpected new packages during load of %s", lpkg.PkgPath)
go.pact.im/x/goupdate
htmlgen.go#L207: if err := g.htmlCodeText(pkg.PkgPath); err != nil {
packages.go#L107: byImportPath[pkg.PkgPath] = pkg
packages.go#L130: if _, ok := pkgByImportPath[pkg.PkgPath]; ok {
textgen.go#L196: if err := g.writeString(p.PkgPath); err != nil {
textgen.go#L232: if err := g.sectionPackageErrors(p.PkgPath, p.Errors); err != nil {
go.pact.im/x/plumb/internal/gopackages
gopackages.go#L82: return nil, fmt.Errorf("loading package %q: %w", p.PkgPath, e)
gopackages.go#L96: return nil, fmt.Errorf("package %q loaded without type information", p.PkgPath)
gopackages.go#L100: PkgPath: p.PkgPath,