golang.org/x/tools/go/packages.Package.Types (field)

15 uses

	golang.org/x/tools/go/packages (current package)
		packages.go#L508: 	Types *types.Package `json:"-"`
		packages.go#L1019: 			ld.pkgs[i].Types = nil
		packages.go#L1053: 		lpkg.Types = types.Unsafe
		packages.go#L1064: 	lpkg.Types = types.NewPackage(lpkg.PkgPath, lpkg.Name)
		packages.go#L1227: 		if ipkg.Types != nil && ipkg.Types.Complete() {
		packages.go#L1228: 			return ipkg.Types, nil
		packages.go#L1273: 	typErr := types.NewChecker(tc, ld.Fset, lpkg.Types, lpkg.TypesInfo).Files(lpkg.Syntax)
		packages.go#L1495: 	if tpkg := lpkg.Types; tpkg != nil && tpkg.Complete() {
		packages.go#L1551: 				view[lpkg.PkgPath] = lpkg.Types
		packages.go#L1574: 	lpkg.Types = tpkg

	go.pact.im/x/goupdate
		diff.go#L115: 			diff := apidiff.Changes(oldPkg.Types, newPkg.Types)

	go.pact.im/x/plumb/internal/gopackages
		gopackages.go#L95: 		if p.Types == nil || p.TypesInfo == nil {
		gopackages.go#L104: 			Types:   p.Types,