checkpoint

This commit is contained in:
microproofs 2023-07-28 21:02:29 -04:00 committed by Kasey
parent 1ee7492f1f
commit 186e1235fd
1 changed files with 6 additions and 3 deletions

View File

@ -3105,9 +3105,12 @@ impl<'a> CodeGenerator<'a> {
DefaultFunction::FstPair DefaultFunction::FstPair
| DefaultFunction::SndPair | DefaultFunction::SndPair
| DefaultFunction::HeadList => { | DefaultFunction::HeadList => builder::undata_builtin(
builder::undata_builtin(builtin, 0, &constructor.tipo, vec![]) builtin,
} 0,
&constructor.tipo.return_type().unwrap(),
vec![],
),
DefaultFunction::MkCons | DefaultFunction::MkPairData => { DefaultFunction::MkCons | DefaultFunction::MkPairData => {
unimplemented!("MkCons and MkPairData should be handled by an anon function or using [] or ( a, b, .., z).\n") unimplemented!("MkCons and MkPairData should be handled by an anon function or using [] or ( a, b, .., z).\n")