go/ast.CommClause.Comm (field)

13 uses

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

	go/parser
		parser.go#L2326: 	return &ast.CommClause{Case: pos, Comm: comm, Colon: colon, Body: body}
		resolver.go#L385: 		if n.Comm != nil {
		resolver.go#L386: 			ast.Walk(r, n.Comm)

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

	go/types
		stmt.go#L139: 			if c.Comm == nil {
		stmt.go#L766: 			switch s := clause.Comm.(type) {
		stmt.go#L785: 				check.error(clause.Comm, _InvalidSelectCase, "select case must be send or receive (possibly with assignment)")
		stmt.go#L790: 			if clause.Comm != nil {
		stmt.go#L791: 				check.stmt(inner, clause.Comm)