go/ast.RangeStmt.Body (field)

8 uses

	go/ast (current package)
		ast.go#L749: 		Body       *BlockStmt
		ast.go#L837: func (s *RangeStmt) End() token.Pos  { return s.Body.End() }
		walk.go#L285: 		Walk(v, n.Body)

	go/parser
		parser.go#L2202: 			Body:   body,

	go/printer
		nodes.go#L1411: 		p.block(s.Body, 1)

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