(expr: &IntervalExpr)
| 280 | } |
| 281 | |
| 282 | fn evaluate_interval(expr: &IntervalExpr) -> Result<Box<dyn Value>, String> { |
| 283 | Ok(Box::new(IntervalValue::new(expr.interval.clone()))) |
| 284 | } |
| 285 | |
| 286 | fn evaluate_collection_index( |
| 287 | env: &mut Environment, |
no outgoing calls
no test coverage detected
searching dependent graphs…