rune/hir/
interpreter.rs

1
2
3
4
5
6
7
8
use crate::alloc::HashMap;
use crate::runtime::Value;

/// HIR interpreter.
#[allow(unused)]
pub(crate) struct Interpreter<'hir> {
    variables: HashMap<&'hir str, Value>,
}