(
env: &mut Environment,
expr: &CastExpr,
titles: &[String],
object: &Vec<Box<dyn Value>>,
)
| 588 | } |
| 589 | |
| 590 | fn evaluate_cast( |
| 591 | env: &mut Environment, |
| 592 | expr: &CastExpr, |
| 593 | titles: &[String], |
| 594 | object: &Vec<Box<dyn Value>>, |
| 595 | ) -> Result<Box<dyn Value>, String> { |
| 596 | let value = evaluate_expression(env, &expr.value, titles, object)?; |
| 597 | value.cast_op(&expr.result_type) |
| 598 | } |
| 599 | |
| 600 | fn evaluate_column( |
| 601 | env: &mut Environment, |
no test coverage detected
searching dependent graphs…