| 12 | } |
| 13 | |
| 14 | pub struct LanguageConfig { |
| 15 | pub name: &'static str, |
| 16 | pub extractor_initialiser: ExtractorInitialiser, |
| 17 | } |
| 18 | |
| 19 | static LANGUAGE_CONFIGS: OnceLock<HashMap<Language, LanguageConfig>> = OnceLock::new(); |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected