oxur_repl/compiler/mod.rs
1//! Compilation pipeline for Oxur REPL
2//!
3//! Manages the compilation of Oxur code to dynamic libraries with caching.
4//!
5//! Based on ODD-0026 Section 2.1 (Compilation Pipeline)
6
7mod cached;
8mod error_translator;
9
10pub use cached::CachedCompiler;
11pub use error_translator::{
12 DiagnosticLevel, ErrorTranslator, RustcDiagnostic, TranslatedDiagnostic, TranslatedSpan,
13 TranslationError,
14};