Fix up for_in

This commit is contained in:
JT
2021-09-03 14:57:18 +12:00
parent df63490266
commit 750502c870
5 changed files with 38 additions and 27 deletions

View File

@ -99,7 +99,7 @@ pub fn eval_expression(
output.push(eval_expression(context, expr)?);
}
Ok(Value::List {
val: output.into_value_stream(),
val: output.into_iter().into_value_stream(),
span: expr.span,
})
}