mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +00:00
Merge branch 'add-load-internal' into builtins-in-roc
This commit is contained in:
commit
aefb536bc4
55 changed files with 101 additions and 74 deletions
|
@ -52,7 +52,7 @@ mod solve_expr {
|
|||
let mut file = File::create(file_path)?;
|
||||
writeln!(file, "{}", module_src)?;
|
||||
drop(file);
|
||||
let result = roc_load::file::load_and_typecheck(
|
||||
let result = roc_load::load_and_typecheck(
|
||||
arena,
|
||||
full_file_path,
|
||||
dir.path(),
|
||||
|
@ -67,7 +67,7 @@ mod solve_expr {
|
|||
|
||||
let loaded = loaded.expect("failed to load module");
|
||||
|
||||
use roc_load::file::LoadedModule;
|
||||
use roc_load::LoadedModule;
|
||||
let LoadedModule {
|
||||
module_id: home,
|
||||
mut can_problems,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue