()
| 2200 | } |
| 2201 | |
| 2202 | fn regex_destructor_decl() -> &'static Regex { |
| 2203 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 2204 | VALUE.get_or_init(|| Regex::new(r"~(\w+)\s*\(").unwrap()) |
| 2205 | } |
| 2206 | |
| 2207 | fn regex_operator_assign_decl() -> &'static Regex { |
| 2208 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
no outgoing calls
no test coverage detected