mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 00:01:16 +00:00
remove identids from Env
This commit is contained in:
parent
7fb5b23fb0
commit
992575051a
4 changed files with 4 additions and 20 deletions
|
@ -170,8 +170,8 @@ pub fn canonicalize_module_defs<'a>(
|
|||
var_store: &mut VarStore,
|
||||
) -> Result<ModuleOutput, RuntimeError> {
|
||||
let mut can_exposed_imports = MutMap::default();
|
||||
let mut scope = Scope::new(home, var_store, exposed_ident_ids.clone());
|
||||
let mut env = Env::new(home, dep_idents, module_ids, exposed_ident_ids);
|
||||
let mut scope = Scope::new(home, var_store, exposed_ident_ids);
|
||||
let mut env = Env::new(home, dep_idents, module_ids);
|
||||
let num_deps = dep_idents.len();
|
||||
|
||||
for (name, alias) in aliases.into_iter() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue