type go/types.SelectionKind

5 uses

	go/types (current package)
		check.go#L562: func (check *Checker) recordSelection(x *ast.SelectorExpr, kind SelectionKind, recv Type, obj Object, index []int, indirect bool) {
		selection.go#L16: type SelectionKind int
		selection.go#L19: 	FieldVal   SelectionKind = iota // x.f is a struct field selector
		selection.go#L41: 	kind     SelectionKind
		selection.go#L49: func (s *Selection) Kind() SelectionKind { return s.kind }