fix: apply order on field expose

This commit is contained in:
Kasey White 2023-03-20 18:08:06 -04:00 committed by Lucas
parent 50db958d06
commit 7c3750bbb4
1 changed files with 1 additions and 3 deletions

View File

@ -4970,9 +4970,7 @@ impl<'a> CodeGenerator<'a> {
term
};
term = term
.apply(Term::var(CONSTR_FIELDS_EXPOSER.to_string()))
.apply(value);
term = term.apply(Term::var(CONSTR_FIELDS_EXPOSER.to_string()).apply(value));
arg_stack.push(term);
}