This commit is contained in:
Jakub Žádník
2021-09-05 01:35:08 +03:00
parent 672fa852b3
commit 6b4fee88c9
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ pub fn flatten_expression(
Expr::Float(_) => {
vec![(expr.span, FlatShape::Float)]
}
Expr::Range(from, to, op) => {
Expr::Range(from, to, op) => {
let mut output = vec![];
if let Some(f) = from {
output.extend(flatten_expression(working_set, f));