Skip to content

Commit

Permalink
Merge pull request #5627 from roc-lang/cleanup-file-rs
Browse files Browse the repository at this point in the history
Extract some modules out of file.rs
  • Loading branch information
ayazhafiz authored Jun 29, 2023
2 parents 1bede92 + 8fef537 commit cde3615
Show file tree
Hide file tree
Showing 8 changed files with 442 additions and 390 deletions.
7 changes: 5 additions & 2 deletions crates/compiler/load/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
Loading

0 comments on commit cde3615

Please sign in to comment.