Boxed skeleton

This commit is contained in:
Folkert 2021-07-12 17:01:53 +02:00
parent 7be0349eee
commit 09f01ba193
8 changed files with 31 additions and 1 deletions

View file

@ -139,6 +139,7 @@ fn build_eq<'a, 'ctx, 'env>(
}
match lhs_layout {
Layout::Boxed(_) => todo!(),
Layout::Builtin(builtin) => {
build_eq_builtin(env, layout_ids, lhs_val, rhs_val, builtin, when_recursive)
}
@ -296,6 +297,7 @@ fn build_neq<'a, 'ctx, 'env>(
}
match lhs_layout {
Layout::Boxed(_) => todo!(),
Layout::Builtin(builtin) => {
build_neq_builtin(env, layout_ids, lhs_val, rhs_val, builtin, when_recursive)
}