leo-ast 4.0.2

Abstract syntax tree (AST) for the Leo programming language
Documentation
// Copyright (C) 2019-2026 Provable Inc.
// This file is part of the Leo library.

// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.

use leo_errors::{ConstEvalError, Result};
use leo_span::Span;

#[macro_export]
macro_rules! tc_fail2 {
    () => {
        panic!("type checker failure")
    };
}

#[macro_export]
macro_rules! halt_no_span2 {
    ($($x:tt)*) => {
        return Err(ConstEvalError::new(format!($($x)*)).into())
    }
}

#[macro_export]
macro_rules! halt2 {
    ($span: expr) => {
        return Err(ConstEvalError::new_spanned(String::new(), $span).into())

    };

    ($span: expr, $($x:tt)*) => {
        return Err(ConstEvalError::new_spanned(format!($($x)*), $span).into())
    };
}

#[macro_export]
macro_rules! fail2 {
    ($span: expr) => {
        ConstEvalError::new_spanned(String::new(), $span).into()

    };

    ($span: expr, $($x:tt)*) => {
        ConstEvalError::new_spanned(format!($($x)*), $span).into()
    };
}

pub trait ExpectTc {
    type T;
    fn expect_tc(self, span: Span) -> Result<Self::T>;
}

impl<T> ExpectTc for Option<T> {
    type T = T;

    fn expect_tc(self, span: Span) -> Result<Self::T> {
        match self {
            Some(t) => Ok(t),
            None => Err(ConstEvalError::new_spanned("type failure".into(), span).into()),
        }
    }
}

impl<T, U: std::fmt::Debug> ExpectTc for Result<T, U> {
    type T = T;

    fn expect_tc(self, span: Span) -> Result<Self::T> {
        self.map_err(|_e| ConstEvalError::new_spanned("type failure".into(), span).into())
    }
}