shulkerscript 0.1.0

Shulkerscript language implementation with compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The base module contains the core functionality of the `Shulkerscript` language.

pub mod source_file;

mod error;
#[doc(inline)]
pub use error::{Error, Result};

mod diagnostic;
pub use diagnostic::{Handler, PrintHandler, SilentHandler, VoidHandler};

mod file_provider;
pub use file_provider::{Error as FileProviderError, FileProvider, FsProvider};

pub mod log;