Fix some formatting issues, mostly around comments and whitespace.
This commit is contained in:
@@ -102,17 +102,17 @@ impl PartialEq for EvalError {
|
|||||||
EvalError::Linker(a) => match other {
|
EvalError::Linker(a) => match other {
|
||||||
EvalError::Linker(b) => a == b,
|
EvalError::Linker(b) => a == b,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
},
|
||||||
|
|
||||||
EvalError::ExitCode(a) => match other {
|
EvalError::ExitCode(a) => match other {
|
||||||
EvalError::ExitCode(b) => a == b,
|
EvalError::ExitCode(b) => a == b,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
},
|
||||||
|
|
||||||
EvalError::RuntimeOutput(a) => match other {
|
EvalError::RuntimeOutput(a) => match other {
|
||||||
EvalError::RuntimeOutput(b) => a == b,
|
EvalError::RuntimeOutput(b) => a == b,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,10 +61,10 @@
|
|||||||
//! for evaluating all expressions. The [`eval`] module provides some
|
//! for evaluating all expressions. The [`eval`] module provides some
|
||||||
//! utility support for this work.
|
//! utility support for this work.
|
||||||
//!
|
//!
|
||||||
pub mod syntax;
|
|
||||||
pub mod ir;
|
|
||||||
pub mod backend;
|
pub mod backend;
|
||||||
pub mod eval;
|
pub mod eval;
|
||||||
|
pub mod ir;
|
||||||
|
pub mod syntax;
|
||||||
|
|
||||||
/// Implementation module for the high-level compiler.
|
/// Implementation module for the high-level compiler.
|
||||||
mod compiler;
|
mod compiler;
|
||||||
|
|||||||
Reference in New Issue
Block a user