mers_lib 0.9.29

library to use the mers language in other projects
Documentation
use crate::{
    errors::{CheckError, EColor, SourceRange},
    program,
};

use super::{CompInfo, MersStatement};

#[derive(Debug)]
pub struct Variable {
    pub pos_in_src: SourceRange,
    pub is_ref: bool,
    pub var: String,
}

impl MersStatement for Variable {
    fn has_scope(&self) -> bool {
        false
    }
    fn compile_custom(
        &self,
        info: &mut crate::info::Info<super::Local>,
        comp: CompInfo,
    ) -> Result<Box<dyn program::run::MersStatement>, CheckError> {
        let init_and_ignore = comp.is_init && self.var == "_";
        if comp.is_init {
            if !init_and_ignore {
                info.init_var(
                    self.var.clone(),
                    (
                        info.scopes.len() - 1,
                        info.scopes.last().unwrap().vars_count,
                    ),
                );
            }
        }
        Ok(Box::new(program::run::variable::Variable {
            pos_in_src: self.pos_in_src.clone(),
            is_init: comp.is_init,
            is_ref_not_ignore: if comp.is_init {
                !init_and_ignore
            } else {
                self.is_ref
            },
            var: if init_and_ignore {
                (usize::MAX, usize::MAX)
            } else if let Some(v) = info.get_var(&self.var) {
                *v
            } else {
                return Err(CheckError::new()
                    .src(vec![(
                        self.pos_in_src.clone(),
                        Some(EColor::UnknownVariable),
                    )])
                    .msg_str(format!("No variable named '{}' found!", self.var)));
            },
        }))
    }
    fn source_range(&self) -> SourceRange {
        self.pos_in_src.clone()
    }
    fn inner_statements(&self) -> Vec<&dyn MersStatement> {
        vec![]
    }
    fn as_any(&self) -> &dyn std::any::Any {
        self
    }
}