darklua_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Transform Lua scripts.

mod ast_converter;
mod frontend;
pub mod generator;
pub mod nodes;
mod parser;
pub mod process;
pub mod rules;
mod utils;

pub use frontend::{
    convert_data, process, BundleConfiguration, Configuration, DarkluaError, GeneratorParameters,
    Options, Resources, WorkerTree,
};
pub use parser::{Parser, ParserError};