1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
use std::collections::BTreeMap;
use std::fmt;
use serde::Serialize;
use crate::compiler::instructions::Instructions;
use crate::environment::Environment;
use crate::error::Error;
use crate::output::Output;
use crate::value::Value;
use crate::vm::Vm;
pub struct Expression<'env, 'source> {
env: &'env Environment<'source>,
instructions: Instructions<'source>,
}
impl<'env, 'source> fmt::Debug for Expression<'env, 'source> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Expression")
.field("env", &self.env)
.finish()
}
}
impl<'env, 'source> Expression<'env, 'source> {
pub(crate) fn new(
env: &'env Environment<'source>,
instructions: Instructions<'source>,
) -> Expression<'env, 'source> {
Expression { env, instructions }
}
pub fn eval<S: Serialize>(&self, ctx: S) -> Result<Value, Error> {
self._eval(Value::from_serializable(&ctx))
}
fn _eval(&self, root: Value) -> Result<Value, Error> {
Ok(ok!(Vm::new(self.env).eval(
&self.instructions,
root,
&BTreeMap::new(),
&mut Output::null(),
crate::AutoEscape::None,
))
.expect("expression evaluation did not leave value on stack"))
}
}