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

@ -17,8 +17,10 @@ mod helpers;
use crate::helpers::fixtures_dir;
use bumpalo::Bump;
use roc_can::module::ExposedByModule;
use roc_load_internal::file::{ExecutionMode, LoadConfig, Threading};
use roc_load_internal::file::{LoadResult, LoadStart, LoadedModule, LoadingProblem};
use roc_load_internal::file::{
ExecutionMode, LoadConfig, LoadResult, LoadStart, LoadingProblem, Threading,
};
use roc_load_internal::module::LoadedModule;
use roc_module::ident::ModuleName;
use roc_module::symbol::{Interns, ModuleId};
use roc_packaging::cache::RocCacheDir;