the debugging begins

This commit is contained in:
Folkert 2022-03-02 20:30:42 +01:00
parent 73bd647a7d
commit c52029c2d1
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
6 changed files with 158 additions and 13 deletions

View file

@ -27,6 +27,14 @@ pub fn constrain_module(declarations: &[Declaration], home: ModuleId) -> Constra
constrain_decls(home, declarations)
}
pub fn constrain_module_soa(
constraints: &mut Constraints,
declarations: &[Declaration],
home: ModuleId,
) -> ConstraintSoa {
crate::soa_expr::constrain_decls(constraints, home, declarations)
}
#[derive(Debug, Clone)]
pub struct Import {
pub loc_symbol: Loc<Symbol>,