Merge branch 'trunk' into decision-tree-remove-clone

This commit is contained in:
Folkert de Vries 2021-11-15 22:34:56 +01:00 committed by GitHub
commit f49bd04e68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 463 additions and 491 deletions

View file

@ -968,7 +968,6 @@ pub fn lowlevel_borrow_signature(arena: &Bump, op: LowLevel) -> &[bool] {
// List.append should own its first argument
ListAppend => arena.alloc_slice_copy(&[owned, owned]),
ListSublist => arena.alloc_slice_copy(&[owned, irrelevant, irrelevant]),
ListDrop => arena.alloc_slice_copy(&[owned, irrelevant]),
ListDropAt => arena.alloc_slice_copy(&[owned, irrelevant]),
ListSwap => arena.alloc_slice_copy(&[owned, irrelevant, irrelevant]),

View file

@ -101,7 +101,6 @@ enum FirstOrder {
ListGetUnsafe,
ListSet,
ListSublist,
ListDrop,
ListDropAt,
ListSingle,
ListRepeat,