const go/token.OR

14 uses

	go/token (current package)
		token.go#L46: 	OR      // |
		token.go#L155: 	OR:      "|",
		token.go#L278: 	case ADD, SUB, OR, XOR:

	go/constant
		value.go#L1140: 		case token.OR:
		value.go#L1170: 		case token.OR:

	go/doc
		exports.go#L188: 		if t.Op == token.OR { // union

	go/parser
		parser.go#L773: 		case token.OR:
		parser.go#L800: 	if typeSetsOK && p.tok == token.OR && f.typ != nil {
		parser.go#L1092: 	for p.tok == token.OR {
		parser.go#L1095: 		t.Op = token.OR

	go/scanner
		scanner.go#L971: 			tok = s.switch3(token.OR, token.OR_ASSIGN, '|', token.LOR)

	go/types
		decl.go#L660: 		wrap = op.Op == token.OR
		expr.go#L1051: 		token.OR:      allInteger,
		union.go#L189: 	if o, _ := x.(*ast.BinaryExpr); o != nil && o.Op == token.OR {