lib-ruby-parser 3.0.11

Ruby parser
Documentation
extern crate lib_ruby_parser_nodes;

mod get_loc_fn;
pub(crate) mod helpers;
mod node_enum;
mod node_file;
mod node_mod;

pub(crate) fn codegen() {
    let nodes = lib_ruby_parser_nodes::nodes();

    std::fs::create_dir_all("src/nodes/types").unwrap();

    for node in nodes.iter() {
        node_file::codegen(node);
    }

    node_mod::codegen();
    node_enum::codegen();
    get_loc_fn::codegen();
}