go/ast.SelectStmt.Select (field)

6 uses

	go/ast (current package)
		ast.go#L729: 		Select token.Pos  // position of "select" keyword
		ast.go#L773: func (s *SelectStmt) Pos() token.Pos     { return s.Select }

	go/parser
		parser.go#L2130: 	return &ast.SelectStmt{Select: pos, Body: body}

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L2643: 	if x.Select != 0 {
		encode_ast.gen.go#L2645: 		e.EncodeInt(int64(x.Select))
		encode_ast.gen.go#L2672: 			x.Select = token.Pos(d.DecodeInt())