mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Used correct low level op for List.keepIf definition
This commit is contained in:
parent
ad41d0f26e
commit
13a644b03c
1 changed files with 1 additions and 1 deletions
|
@ -952,7 +952,7 @@ fn list_keep_if(symbol: Symbol, var_store: &mut VarStore) -> Def {
|
|||
let func_var = var_store.fresh();
|
||||
|
||||
let body = RunLowLevel {
|
||||
op: LowLevel::ListMap,
|
||||
op: LowLevel::ListKeepIf,
|
||||
args: vec![
|
||||
(list_var, Var(Symbol::ARG_1)),
|
||||
(func_var, Var(Symbol::ARG_2)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue