Move ScopeModules to can

This commit is contained in:
Agus Zubiaga 2024-07-05 21:35:52 -03:00
parent d775d9ef53
commit f80cb341a6
No known key found for this signature in database
7 changed files with 151 additions and 152 deletions

View file

@ -1,14 +1,11 @@
use std::path::Path;
use crate::procedure::References;
use crate::scope::Scope;
use crate::scope::{LookedupModule, LookedupSymbol, Scope};
use bumpalo::Bump;
use roc_collections::{MutMap, VecSet};
use roc_module::ident::{Ident, ModuleName};
use roc_module::symbol::{
IdentIdsByModule, LookedupModule, LookedupSymbol, ModuleId, PQModuleName, PackageModuleIds,
Symbol,
};
use roc_module::symbol::{IdentIdsByModule, ModuleId, PQModuleName, PackageModuleIds, Symbol};
use roc_problem::can::{Problem, RuntimeError};
use roc_region::all::{Loc, Region};