const go/ast.SEND

12 uses

	go/ast (current package)
		ast.go#L439: 	SEND ChanDir = 1 << iota

	go/parser
		parser.go#L1336: 	dir := ast.SEND | ast.RECV
		parser.go#L1343: 			dir = ast.SEND
		parser.go#L1842: 			dir := ast.SEND
		parser.go#L1843: 			for ok && dir == ast.SEND {
		parser.go#L1852: 			if dir == ast.SEND {

	go/printer
		nodes.go#L1070: 		case ast.SEND | ast.RECV:
		nodes.go#L1074: 		case ast.SEND:

	go/types
		exprstring.go#L158: 		case ast.SEND:
		typexpr.go#L391: 		case ast.SEND | ast.RECV:
		typexpr.go#L393: 		case ast.SEND:

	golang.org/x/tools/internal/typesinternal
		zerovalue.go#L263: 			dir = ast.SEND | ast.RECV