1 2 3 4 5 6 7 8 9 10 11
//! Per-language tables mapping an AST node type to its reader. pub mod c_sharp; pub mod java; pub mod json; pub mod python; pub mod yaml; use crate::syntax::SyntaxReader; pub type Dispatcher = fn(node_type: &str) -> Option<SyntaxReader>;