go/ast.ForStmt.Body (field)

8 uses

	go/ast (current package)
		ast.go#L739: 		Body *BlockStmt
		ast.go#L836: func (s *ForStmt) End() token.Pos    { return s.Body.End() }
		walk.go#L275: 		Walk(v, n.Body)

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

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

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