//! This module contains the syntax tree and parser for the `Shulkerscript` language.
pub mod error;
pub mod parser;
#[allow(clippy::module_name_repetitions)]
pub mod syntax_tree;