()
| 1920 | } |
| 1921 | |
| 1922 | fn regex_deleted_func_eol() -> &'static Regex { |
| 1923 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 1924 | VALUE.get_or_init(|| Regex::new(r"=\s*delete\s*$").unwrap()) |
| 1925 | } |
| 1926 | |
| 1927 | fn regex_inline_func() -> &'static Regex { |
| 1928 | static VALUE: OnceLock<Regex> = OnceLock::new(); |