(word: &str)
| 77 | RE.get_or_init(|| Regex::new(r"^([A-Z][A-Za-z0-9_]*)\s*::").unwrap()) |
| 78 | } |
| 79 | fn is_prefix_re(word: &str) -> bool { |
| 80 | // /^is[A-Z]/ for Lombok boolean getters. |
| 81 | word.len() > 2 && word.starts_with("is") && word.as_bytes()[2].is_ascii_uppercase() |
| 82 | } |
| 83 | |
| 84 | struct Scope { |
| 85 | row: u32, |
no test coverage detected