shulkerscript-lang/src/transpile/mod.rs

11 lines
261 B
Rust

//! The transpile module is responsible for transpiling the abstract syntax tree into a data pack.
#[doc(hidden)]
#[cfg(feature = "shulkerbox")]
pub mod conversions;
pub mod error;
#[doc(hidden)]
pub mod lua;
#[cfg(feature = "shulkerbox")]
pub mod transpiler;