started using scope properly, improved error backtrace conversion

This commit is contained in:
Anton-4 2021-10-16 19:37:20 +02:00
parent 2158686a0a
commit a272765fc7
19 changed files with 184 additions and 110 deletions

View file

@ -26,8 +26,6 @@ pub fn expr_to_html<'a>(
let dep_idents = IdentIds::exposed_builtins(8);
let exposed_ident_ids = IdentIds::default();
let all_ident_ids = interns.get_module_ident_ids(&env_module_id)?.clone();
let mut env = lang::env::Env::new(
env_module_id,
&env_arena,
@ -35,7 +33,6 @@ pub fn expr_to_html<'a>(
&mut var_store,
dep_idents,
env_module_ids,
all_ident_ids,
exposed_ident_ids,
);