1//! Language-specific parser implementations.
2//!
3//! Each module in this folder implements a parser for a single language.
4//! They translate the native CST/AST into [`RawNode`] vectors.
56pub mod common;
7pub mod go;
8pub mod python;
9pub mod ruby;