go/ast.CommClause.Body (field)
12 uses
go/ast (current package)
ast.go#L740: Body []Stmt // statement list; or nil
ast.go#L846: if n := len(s.Body); n > 0 {
ast.go#L847: return s.Body[n-1].End()
walk.go#L271: walkStmtList(v, n.Body)
go/parser
parser.go#L2326: return &ast.CommClause{Case: pos, Comm: comm, Colon: colon, Body: body}
resolver.go#L388: r.walkStmts(n.Body)
go/printer
nodes.go#L1440: p.stmtList(s.Body, 1, nextIsRBrace)
go/types
labels.go#L255: 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#L793: check.stmtList(inner, clause.Body)