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

13 uses

	golang.org/x/tools/go/packages (current package)
		packages.go#L502: 	Types *types.Package `json:"-"`
		packages.go#L1001: 			ld.pkgs[i].Types = nil
		packages.go#L1031: 		lpkg.Types = types.Unsafe
		packages.go#L1042: 	lpkg.Types = types.NewPackage(lpkg.PkgPath, lpkg.Name)
		packages.go#L1217: 		if ipkg.Types != nil && ipkg.Types.Complete() {
		packages.go#L1218: 			return ipkg.Types, nil
		packages.go#L1253: 	typErr := types.NewChecker(tc, ld.Fset, lpkg.Types, lpkg.TypesInfo).Files(lpkg.Syntax)
		packages.go#L1457: 	if tpkg := lpkg.Types; tpkg != nil && tpkg.Complete() {
		packages.go#L1513: 				view[lpkg.PkgPath] = lpkg.Types
		packages.go#L1536: 	lpkg.Types = tpkg

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