go/ast.CommClause.Comm (field)

9 uses

	go/ast (current package)
		ast.go#L722: 		Comm  Stmt      // send or receive statement; nil means default case
		walk.go#L257: 		if n.Comm != nil {
		walk.go#L258: 			Walk(v, n.Comm)

	go/parser
		parser.go#L2112: 	return &ast.CommClause{Case: pos, Comm: comm, Colon: colon, Body: body}

	go/printer
		nodes.go#L1372: 		if s.Comm != nil {
		nodes.go#L1374: 			p.stmt(s.Comm, false)

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L775: 	if x.Comm != nil {
		encode_ast.gen.go#L777: 		e.EncodeAny(x.Comm)
		encode_ast.gen.go#L810: 			x.Comm = d.DecodeAny().(ast.Stmt)