| 8089 | } |
| 8090 | |
| 8091 | RegexMatcher::RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity): m_regex(std::move(regex)), m_caseSensitivity(caseSensitivity) {} |
| 8092 | |
| 8093 | bool RegexMatcher::match(std::string const& matchee) const { |
| 8094 | auto flags = std::regex::ECMAScript; // ECMAScript is the default syntax option anyway |
nothing calls this directly
no outgoing calls
no test coverage detected