make sure traverse_uplc_with_helper is always passing the arg to lambda before running the with function.

Breaks #945 again
This commit is contained in:
microproofs
2024-05-22 11:58:05 -04:00
parent edf82f773c
commit c16bd06e97
13 changed files with 26 additions and 25 deletions

View File

@@ -803,7 +803,8 @@ impl Term<Name> {
with,
inline_lambda,
);
with(None, self, vec![], scope);
with(None, self, args, scope);
}
}