2024-04-03 01:27:02 +02:00
|
|
|
//! 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)]
|
2024-04-05 12:59:21 +02:00
|
|
|
#[cfg(feature = "shulkerbox")]
|
2024-04-03 13:46:57 +02:00
|
|
|
pub mod conversions;
|
2024-04-03 01:27:02 +02:00
|
|
|
pub mod error;
|
2024-04-05 12:59:21 +02:00
|
|
|
#[cfg(feature = "shulkerbox")]
|
2024-04-03 01:27:02 +02:00
|
|
|
pub mod transpiler;
|