()
| 2163 | } |
| 2164 | |
| 2165 | fn regex_namespace_include_open() -> &'static Regex { |
| 2166 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 2167 | VALUE.get_or_init(|| Regex::new(r"^\s*namespace\s+\w+\s*\{").unwrap()) |
| 2168 | } |
| 2169 | |
| 2170 | fn regex_namespace_include_directive() -> &'static Regex { |
| 2171 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
no outgoing calls
no test coverage detected