mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
values name change
This commit is contained in:
parent
53c55d112d
commit
f11bf90d6d
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ pub fn helper(
|
||||||
// println!("=================================\n");
|
// println!("=================================\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
debug_assert_eq!(exposed_to_host.values.len(), 1);
|
debug_assert_eq!(exposed_to_host.top_level_values.len(), 1);
|
||||||
let entry_point = match loaded.entry_point {
|
let entry_point = match loaded.entry_point {
|
||||||
EntryPoint::Executable {
|
EntryPoint::Executable {
|
||||||
exposed_to_host,
|
exposed_to_host,
|
||||||
|
@ -188,7 +188,7 @@ pub fn helper(
|
||||||
let env = roc_gen_dev::Env {
|
let env = roc_gen_dev::Env {
|
||||||
arena,
|
arena,
|
||||||
module_id,
|
module_id,
|
||||||
exposed_to_host: exposed_to_host.values.keys().copied().collect(),
|
exposed_to_host: exposed_to_host.top_level_values.keys().copied().collect(),
|
||||||
lazy_literals,
|
lazy_literals,
|
||||||
generate_allocators: true, // Needed for testing, since we don't have a platform
|
generate_allocators: true, // Needed for testing, since we don't have a platform
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue