()
| 1890 | } |
| 1891 | |
| 1892 | fn regex_string_literal() -> &'static Regex { |
| 1893 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 1894 | VALUE.get_or_init(|| Regex::new(r#""(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*'"#).unwrap()) |
| 1895 | } |
| 1896 | |
| 1897 | fn regex_new_alloc() -> &'static Regex { |
| 1898 | static VALUE: OnceLock<Regex> = OnceLock::new(); |