📜 Add better documentation across the compiler. #3

Merged
acw merged 19 commits from acw/better-docs into develop 2023-05-13 12:34:48 -07:00
15 changed files with 95 additions and 95 deletions
Showing only changes of commit c870eeeca3 - Show all commits

View File

@@ -102,17 +102,17 @@ impl PartialEq for EvalError {
EvalError::Linker(a) => match other {
EvalError::Linker(b) => a == b,
_ => false,
}
},
EvalError::ExitCode(a) => match other {
EvalError::ExitCode(b) => a == b,
_ => false,
}
},
EvalError::RuntimeOutput(a) => match other {
EvalError::RuntimeOutput(b) => a == b,
_ => false,
}
},
}
}
}

View File

@@ -61,10 +61,10 @@
//! for evaluating all expressions. The [`eval`] module provides some
//! utility support for this work.
//!
pub mod syntax;
pub mod ir;
pub mod backend;
pub mod eval;
pub mod ir;
pub mod syntax;
/// Implementation module for the high-level compiler.
mod compiler;