| 6 | namespace internal { |
| 7 | |
| 8 | Regex::Regex(std::string regularExpression) : |
| 9 | regexImpl(regularExpression), |
| 10 | regexString(regularExpression) { |
| 11 | } |
| 12 | |
| 13 | bool RegexMatch::matches() { |
| 14 | return regexMatched; |
nothing calls this directly
no outgoing calls
no test coverage detected