shulkerscript-lang/src/transpile/mod.rs

11 lines
261 B
Rust
Raw Normal View History

//! The transpile module is responsible for transpiling the abstract syntax tree into a data pack.
2024-04-03 13:46:57 +02:00
#[doc(hidden)]
#[cfg(feature = "shulkerbox")]
2024-04-03 13:46:57 +02:00
pub mod conversions;
pub mod error;
2024-04-06 17:23:20 +02:00
#[doc(hidden)]
pub mod lua;
#[cfg(feature = "shulkerbox")]
pub mod transpiler;