const go/ast.SEND

12 uses

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

	go/parser
		parser.go#L1306: 	dir := ast.SEND | ast.RECV
		parser.go#L1313: 			dir = ast.SEND
		parser.go#L1812: 			dir := ast.SEND
		parser.go#L1813: 			for ok && dir == ast.SEND {
		parser.go#L1822: 			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#L393: 		case ast.SEND | ast.RECV:
		typexpr.go#L395: 		case ast.SEND:

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