(&self, expr: &Expression)
| 205 | } |
| 206 | |
| 207 | pub fn resolve(&self, expr: &Expression) -> Result<Value, ExecutionError> { |
| 208 | Value::resolve(expr, self) |
| 209 | } |
| 210 | |
| 211 | pub fn resolve_all(&self, exprs: &[Expression]) -> Result<Value, ExecutionError> { |
| 212 | Value::resolve_all(exprs, self) |
no outgoing calls
no test coverage detected