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

13 uses

	golang.org/x/tools/go/packages (current package)
		packages.go#L347: 	Types *types.Package
		packages.go#L813: 			ld.pkgs[i].Types = nil
		packages.go#L862: 		lpkg.Types = types.Unsafe
		packages.go#L873: 	lpkg.Types = types.NewPackage(lpkg.PkgPath, lpkg.Name)
		packages.go#L1024: 		if ipkg.Types != nil && ipkg.Types.Complete() {
		packages.go#L1025: 			return ipkg.Types, nil
		packages.go#L1052: 	types.NewChecker(tc, ld.Fset, lpkg.Types, lpkg.TypesInfo).Files(lpkg.Syntax)
		packages.go#L1228: 	if tpkg := lpkg.Types; tpkg != nil && tpkg.Complete() {
		packages.go#L1284: 				view[lpkg.PkgPath] = lpkg.Types
		packages.go#L1307: 	lpkg.Types = tpkg

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