Delay 2nd arg on trace in case it throws and prevents trace from printing

This commit is contained in:
Kasey White 2023-02-15 03:06:58 -05:00
parent e15e725bfe
commit a24fc55993
1 changed files with 3 additions and 2 deletions

View File

@ -5644,8 +5644,9 @@ impl<'a> CodeGenerator<'a> {
.into(), .into(),
), ),
), ),
term, Term::Delay(term.into()),
); )
.force_wrap();
arg_stack.push(term); arg_stack.push(term);
} }