haloumi-ir 0.5.11

Intermediate representation of the haloumi framework.
Documentation
//! Error type.

use std::convert::Infallible;

use thiserror::Error;

use crate::{expr::NonConstIRBexprError, meta::Meta};

/// IR error type.
#[derive(Error, Clone, Debug)]
pub enum Error {
    /// Happens while lowering [`IRBexpr`](crate::expr::IRBexpr) with no arguments (i.e. an empty
    /// `and` expression).
    #[error("boolean expression with no elements")]
    EmptyBexpr,
    /// Happens while constant folding a [`IRBexpr`](crate::expr::IRBexpr) that folds into `false`.
    #[error("{2}: detected {0} statement with predicate evaluating to 'false': {1}")]
    FoldedFalseStmt(&'static str, String, Meta),
    /// Happens when a boolean expression is not constant and was expected to be.
    #[error(transparent)]
    ExpectedConstBexpr(#[from] NonConstIRBexprError),
}

impl From<Infallible> for Error {
    fn from(_value: Infallible) -> Self {
        unreachable!()
    }
}