mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
refactor
This commit is contained in:
parent
c9aedff3e8
commit
5ae4ccad5e
3 changed files with 16 additions and 9 deletions
|
@ -10807,6 +10807,11 @@ pub fn layout_contains_function(arena: &Bump, layout: Layout) -> bool {
|
|||
false
|
||||
}
|
||||
|
||||
#[derive(Debug, Default)]
|
||||
pub struct GlueLayouts<'a> {
|
||||
pub getters: std::vec::Vec<(Symbol, ProcLayout<'a>)>,
|
||||
}
|
||||
|
||||
pub struct GlueProcs<'a> {
|
||||
pub procs: Vec<'a, ((Symbol, ProcLayout<'a>), Proc<'a>)>,
|
||||
pub layouts: Vec<'a, Layout<'a>>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue