mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
hooking everything up
This commit is contained in:
parent
84d5cbc4f1
commit
ee21f86f8f
9 changed files with 334 additions and 19 deletions
|
@ -4004,7 +4004,16 @@ fn run_low_level<'a, 'ctx, 'env>(
|
|||
let (dict, _) = load_symbol_and_layout(scope, &args[0]);
|
||||
let (key, key_layout) = load_symbol_and_layout(scope, &args[1]);
|
||||
let (value, value_layout) = load_symbol_and_layout(scope, &args[2]);
|
||||
dict_insert(env, scope, dict, key, key_layout, value, value_layout)
|
||||
dict_insert(
|
||||
env,
|
||||
layout_ids,
|
||||
scope,
|
||||
dict,
|
||||
key,
|
||||
key_layout,
|
||||
value,
|
||||
value_layout,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue