Check if a file path is supported for AST extraction.
(path: &str)
| 154 | |
| 155 | /// Check if a file path is supported for AST extraction. |
| 156 | pub fn is_supported(path: &str) -> bool { |
| 157 | Language::detect(path).is_some() |
| 158 | } |
| 159 | |
| 160 | /// All supported file extensions across all languages. |
| 161 | pub const ALL_EXTENSIONS: &[&str] = &[ |
no outgoing calls
no test coverage detected