| 129 | // OrOperator |
| 130 | template <typename Source> |
| 131 | inline int RegEx::MatchOpOr(const Source& source) const { |
| 132 | for (const RegEx& param : m_params) { |
| 133 | int n = param.MatchUnchecked(source); |
| 134 | if (n >= 0) |
| 135 | return n; |
| 136 | } |
| 137 | return -1; |
| 138 | } |
| 139 | |
| 140 | // AndOperator |
| 141 | // Note: 'AND' is a little funny, since we may be required to match things |
nothing calls this directly
no test coverage detected