1 2 3 4 5 6 7 8 9 10 11
#[cfg(feature = "lib-ruby-parser-bindings")] mod external; mod native; mod tests; pub(crate) fn codegen() { #[cfg(feature = "lib-ruby-parser-bindings")] external::codegen(); native::codegen(); tests::codegen() }