The chained-call re-encode gate (`/^[A-Z]/`).
()
| 79 | } |
| 80 | /// The chained-call re-encode gate (`/^[A-Z]/`). |
| 81 | fn starts_upper_re() -> &'static Regex { |
| 82 | static RE: OnceLock<Regex> = OnceLock::new(); |
| 83 | RE.get_or_init(|| Regex::new(r"^[A-Z]").unwrap()) |
| 84 | } |
| 85 | /// extractDartReturnType's `<...>` strip (`/<[^>]*>/g`). |
| 86 | fn angle_args_re() -> &'static Regex { |
| 87 | static RE: OnceLock<Regex> = OnceLock::new(); |