go/ast.IfStmt.Body (field)

10 uses

	go/ast (current package)
		ast.go#L707: 		Body *BlockStmt
		ast.go#L835: 	return s.Body.End()
		walk.go#L242: 		Walk(v, n.Body)

	go/parser
		parser.go#L2152: 	return &ast.IfStmt{If: pos, Init: init, Cond: cond, Body: body, Else: else_}
		resolver.go#L335: 		ast.Walk(r, n.Body)

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

	go/types
		labels.go#L240: 			stmtBranches(s.Body)
		return.go#L49: 			check.isTerminating(s.Body, "") &&
		return.go#L137: 		if hasBreak(s.Body, label, implicit) ||
		stmt.go#L571: 		check.stmt(inner, s.Body)