type go/ast.SelectStmt

17 uses

	go/ast (current package)
		ast.go#L760: 	SelectStmt struct {
		ast.go#L806: func (s *SelectStmt) Pos() token.Pos     { return s.Select }
		ast.go#L868: func (s *SelectStmt) End() token.Pos { return s.Body.End() }
		ast.go#L892: func (*SelectStmt) stmtNode()     {}
		walk.go#L249: 	case *SelectStmt:

	go/parser
		parser.go#L2343: func (p *parser) parseSelectStmt() *ast.SelectStmt {
		parser.go#L2358: 	return &ast.SelectStmt{Select: pos, Body: body}
		resolver.go#L394: 	case *ast.SelectStmt:

	go/printer
		nodes.go#L1505: 	case *ast.SelectStmt:

	go/types
		labels.go#L188: 					case *ast.SwitchStmt, *ast.TypeSwitchStmt, *ast.SelectStmt, *ast.ForStmt, *ast.RangeStmt:
		labels.go#L255: 		case *ast.SelectStmt:
		return.go#L60: 	case *ast.SelectStmt:
		return.go#L158: 	case *ast.SelectStmt:
		stmt.go#L786: 	case *ast.SelectStmt:

	golang.org/x/tools/go/ast/edge
		edge.go#L269: 	SelectStmt_Body:       info[*ast.SelectStmt]("Body"),

	golang.org/x/tools/go/ast/inspector
		typeof.go#L190: 	case *ast.SelectStmt:
		walk.go#L239: 	case *ast.SelectStmt: