Extract some modules out of file.rs

This commit is contained in:
Richard Feldman 2023-06-28 22:22:36 -04:00
parent 0ade2a85d2
commit 40f2dd7030
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
7 changed files with 440 additions and 388 deletions

View file

@ -22,7 +22,8 @@ use roc_constrain::expr::constrain_decls;
use roc_debug_flags::dbg_do;
use roc_derive::DerivedModule;
use roc_derive_key::{DeriveBuiltin, DeriveError, DeriveKey, Derived};
use roc_load_internal::file::{add_imports, LoadedModule, Threading};
use roc_load_internal::file::{add_imports, Threading};
use roc_load_internal::module::LoadedModule;
use roc_module::symbol::{IdentIds, Interns, ModuleId, Symbol};
use roc_region::all::LineInfo;
use roc_reporting::report::{type_problem, RocDocAllocator};