CONSTANT_NAME (r.ts:43) — ALL_CAPS or DOTTED.CAPS top-level assignment.
()
| 33 | |
| 34 | /// CONSTANT_NAME (r.ts:43) — ALL_CAPS or DOTTED.CAPS top-level assignment. |
| 35 | fn constant_name_re() -> &'static Regex { |
| 36 | static RE: OnceLock<Regex> = OnceLock::new(); |
| 37 | RE.get_or_init(|| Regex::new(r"^[A-Z][A-Z0-9._]*$").unwrap()) |
| 38 | } |
| 39 | |
| 40 | /// ASSIGN_LEFT / ASSIGN_RIGHT (r.ts:37-38). |
| 41 | fn is_assign_left(op: &str) -> bool { |
no test coverage detected