pub type FirstPassResult<T> = Result<T, WagCheckError>;Expand description
After rewriting/typechecking, we either return something or we have a WagCheckError.
Aliased Type§
pub enum FirstPassResult<T> {
Ok(T),
Err(WagCheckError),
}pub type FirstPassResult<T> = Result<T, WagCheckError>;After rewriting/typechecking, we either return something or we have a WagCheckError.
pub enum FirstPassResult<T> {
Ok(T),
Err(WagCheckError),
}