mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
the debugging begins
This commit is contained in:
parent
73bd647a7d
commit
c52029c2d1
6 changed files with 158 additions and 13 deletions
|
@ -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>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue