| 22 | namespace cel::internal { |
| 23 | |
| 24 | inline RE2::Options MakeRE2Options() { |
| 25 | RE2::Options options; |
| 26 | options.set_log_errors(false); |
| 27 | return options; |
| 28 | } |
| 29 | |
| 30 | inline absl::Status CheckRE2(const RE2& re, int max_program_size) { |
| 31 | if (!re.ok()) { |
no outgoing calls
no test coverage detected