go/types.Object.Parent (method)

7 uses

	go/types (current package)
		decl.go#L207: 		isPkgObj := obj.Parent() == check.pkg.scope
		object.go#L30: 	Parent() *Scope // scope in which this object is declared; nil for methods and struct fields
		object.go#L601: 	if obj.Name() == "any" && obj.Parent() == Universe {
		scope.go#L105: 	if obj.Parent() == nil {
		scope.go#L188: 			if obj.Parent() == nil {
		typexpr.go#L41: 	if obj.Name() == "any" && obj.Parent() == Universe {

	golang.org/x/tools/internal/typesinternal
		types.go#L140: 	return obj.Pkg() != nil && obj.Parent() == obj.Pkg().Scope()