1use crate::alloc::HashMap; 2use crate::runtime::Value; 3 4/// HIR interpreter. 5#[allow(unused)] 6pub(crate) struct Interpreter<'hir> { 7 variables: HashMap<&'hir str, Value>, 8}