mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
fix tests/more uniq removal
This commit is contained in:
parent
309eff6edd
commit
ca04411523
18 changed files with 332 additions and 3256 deletions
|
@ -26,7 +26,8 @@ pub fn constrain_module(
|
|||
module: &ModuleOutput,
|
||||
home: ModuleId,
|
||||
mode: Mode,
|
||||
var_store: &mut VarStore,
|
||||
// TODO remove parameter
|
||||
_var_store: &mut VarStore,
|
||||
) -> Constraint {
|
||||
use Mode::*;
|
||||
|
||||
|
@ -40,7 +41,7 @@ pub fn constrain_module(
|
|||
|
||||
match mode {
|
||||
Standard => constrain_decls(home, decls),
|
||||
Uniqueness => crate::uniq::constrain_decls(home, decls, var_store),
|
||||
Uniqueness => constrain_decls(home, decls),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue