add load_internal

This commit is contained in:
Folkert 2022-03-23 15:18:22 +01:00
parent d607d6db05
commit 7bb1fd88fa
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
55 changed files with 100 additions and 73 deletions

View file

@ -1,9 +1,6 @@
#![warn(clippy::dbg_macro)]
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
#![allow(clippy::large_enum_variant)]
pub mod docs;
pub mod file;
mod work;
pub use roc_load_internal::file::{
load_and_monomorphize, load_and_monomorphize_from_str, load_and_typecheck, LoadedModule,
LoadingProblem, MonomorphizedModule,
};
#[cfg(target_family = "wasm")]
mod wasm_system_time;
pub use roc_load_internal::docs;