new formatting

This commit is contained in:
Folkert 2021-07-30 17:13:50 +02:00
parent 981e026a58
commit e0648d348d
6 changed files with 6 additions and 19 deletions

View file

@ -211,9 +211,7 @@ fn to_expr_report<'a>(
to_lambda_report(alloc, filename, context, lambda, *row, *col)
}
EExpr::List(list, row, col) => to_list_report(alloc, filename, context, list, *row, *col),
EExpr::Str(string, row, col) => {
to_str_report(alloc, filename, context, string, *row, *col)
}
EExpr::Str(string, row, col) => to_str_report(alloc, filename, context, string, *row, *col),
EExpr::InParens(expr, row, col) => {
to_expr_in_parens_report(alloc, filename, context, expr, *row, *col)
}