()
| 2168 | } |
| 2169 | |
| 2170 | fn regex_namespace_include_directive() -> &'static Regex { |
| 2171 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 2172 | VALUE.get_or_init(|| Regex::new(r"^\s*#\s*include").unwrap()) |
| 2173 | } |
| 2174 | |
| 2175 | fn regex_named_enum() -> &'static Regex { |
| 2176 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
no outgoing calls
no test coverage detected