This commit is contained in:
Folkert 2022-11-06 13:36:58 +01:00
parent c9aedff3e8
commit 5ae4ccad5e
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
3 changed files with 16 additions and 9 deletions

View file

@ -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>>,