()
| 2205 | } |
| 2206 | |
| 2207 | fn regex_operator_assign_decl() -> &'static Regex { |
| 2208 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 2209 | VALUE.get_or_init(|| Regex::new(r"\boperator\s*=\s*\(").unwrap()) |
| 2210 | } |
| 2211 | |
| 2212 | fn regex_member_trailing_underscore() -> &'static Regex { |
| 2213 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
no outgoing calls
no test coverage detected