Unify logic for building record and tuple IR

This commit is contained in:
Ayaz Hafiz 2023-02-08 11:03:02 -05:00
parent 9340a67e87
commit 1ee5f9d02b
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
2 changed files with 214 additions and 171 deletions

View file

@ -6,6 +6,8 @@
#![warn(clippy::dbg_macro)]
// See github.com/roc-lang/roc/issues/800 for discussion of the large_enum_variant check.
#![allow(clippy::large_enum_variant, clippy::upper_case_acronyms)]
// Not a useful lint for us
#![allow(clippy::too_many_arguments)]
pub mod borrow;
pub mod code_gen_help;