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

@ -18,8 +18,11 @@ const SKIP_SUBS_CACHE: bool = {
pub use roc_load_internal::docs;
pub use roc_load_internal::file::{
EntryPoint, ExecutionMode, ExpectMetadata, Expectations, ExposedToHost, LoadConfig, LoadResult,
LoadStart, LoadedModule, LoadingProblem, MonomorphizedModule, Phase, Threading,
ExecutionMode, ExpectMetadata, LoadConfig, LoadResult, LoadStart, LoadingProblem, Phase,
Threading,
};
pub use roc_load_internal::module::{
EntryPoint, Expectations, ExposedToHost, LoadedModule, MonomorphizedModule,
};
#[allow(clippy::too_many_arguments)]