go/ast.CommClause.Body (field)
12 uses
go/ast (current package)
ast.go#L745: Body []Stmt // statement list; or nil
ast.go#L852: if n := len(s.Body); n > 0 {
ast.go#L853: return s.Body[n-1].End()
walk.go#L247: walkList(v, n.Body)
go/parser
parser.go#L2320: return &ast.CommClause{Case: pos, Comm: comm, Colon: colon, Body: body}
resolver.go#L392: r.walkStmts(n.Body)
go/printer
nodes.go#L1503: p.stmtList(s.Body, 1, nextIsRBrace)
go/types
labels.go#L253: blockBranches(nil, s.Body)
return.go#L63: if !check.isTerminatingList(cc.Body, "") || hasBreakList(cc.Body, label, true) {
return.go#L156: return hasBreakList(s.Body, label, implicit)
stmt.go#L837: check.stmtList(inner, clause.Body)