go/ast.SelectStmt.Body (field)

8 uses

	go/ast (current package)
		ast.go#L730: 		Body   *BlockStmt // CommClauses only
		ast.go#L835: func (s *SelectStmt) End() token.Pos { return s.Body.End() }
		walk.go#L263: 		Walk(v, n.Body)

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

	go/printer
		nodes.go#L1383: 		body := s.Body

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L2647: 	if x.Body != nil {
		encode_ast.gen.go#L2649: 		encode_ast_BlockStmt(e, x.Body)
		encode_ast.gen.go#L2674: 			decode_ast_BlockStmt(d, &x.Body)