dixscript 1.0.0

Config, code, and encryption in one file — a data interchange format with compile-time functions, AES-256/ChaCha20 built-in, and cross-platform FFI
Documentation

//! Error management helper types and utilities

mod tokenization_exception;
mod parse_exception;
mod semantics_exception;
mod parse_state;
mod source_line_extensions;
mod dlm_pipeline_exception;
mod imports_resolution_exception;
mod binary_serialization_exception;
mod runtime_exception;
mod ast_enhancement_exception;
mod value_resolution_exception;

pub use tokenization_exception::TokenizationException;
pub use parse_exception::ParseException;
pub use semantics_exception::SemanticsException;
pub use parse_state::ParseState;
pub use source_line_extensions::{SourceLineExtensions, get_source_line_from_tokens};
pub use dlm_pipeline_exception::DLMPipelineException;
pub use imports_resolution_exception::ImportsResolutionException;
pub use binary_serialization_exception::BinarySerializationException;
pub use runtime_exception::RuntimeException;
pub use ast_enhancement_exception::AstEnhancementException;
pub use value_resolution_exception::ValueResolutionException;