One other place

This commit is contained in:
Riley-Kilgore 2024-08-08 17:11:30 -07:00 committed by Lucas
parent 213ad48de7
commit cab58e5aab
1 changed files with 2 additions and 2 deletions

View File

@ -1926,9 +1926,9 @@ impl<'a, 'b> ExprTyper<'a, 'b> {
let mut new_arguments = Vec::new(); let mut new_arguments = Vec::new();
new_arguments.extend(arguments); new_arguments.extend(arguments);
new_arguments.push(CallArg { new_arguments.push(CallArg {
location: call_location, location: lambda_span,
label: None, label: None,
value: UntypedExpr::lambda(names, continuation, call_location), value: UntypedExpr::lambda(names, continuation, lambda_span),
}); });
UntypedExpr::Call { UntypedExpr::Call {