go/ast.ForStmt.Body (field)

10 uses

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

	go/parser
		parser.go#L2424: 		Body: body,
		resolver.go#L409: 		ast.Walk(r, n.Body)

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

	go/types
		labels.go#L261: 			stmtBranches(s.Body)
		return.go#L71: 		if s.Cond == nil && !hasBreak(s.Body, label, true) {
		return.go#L164: 		if label != "" && hasBreak(s.Body, label, false) {
		stmt.go#L820: 		check.stmt(inner, s.Body)