LOMBOK_LOG_ANNOTATIONS (languages/java.ts).
(name: &str)
| 53 | |
| 54 | /// LOMBOK_LOG_ANNOTATIONS (languages/java.ts). |
| 55 | fn is_lombok_log_annotation(name: &str) -> bool { |
| 56 | matches!( |
| 57 | name, |
| 58 | "Slf4j" | "Log4j" | "Log4j2" | "Log" | "CommonsLog" | "JBossLog" | "Flogger" | "XSlf4j" |
| 59 | | "CustomLog" |
| 60 | ) |
| 61 | } |
| 62 | |
| 63 | fn generic_args_re() -> &'static Regex { |
| 64 | static RE: OnceLock<Regex> = OnceLock::new(); |
no outgoing calls
no test coverage detected