attempt to correct list refcount generation in dev backends

This commit is contained in:
Brendan Hansknecht 2024-07-07 16:16:16 -07:00
parent 94fe0820d5
commit 36bc8bfac4
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
9 changed files with 56 additions and 24 deletions

View file

@ -50,6 +50,7 @@ pub enum LowLevel {
ListConcatUtf8,
ListIncref,
ListDecref,
ListElemDecFnPtr,
NumAdd,
NumAddWrap,
NumAddChecked,
@ -243,6 +244,7 @@ macro_rules! map_symbol_to_lowlevel {
LowLevel::RefCountIsUnique => unimplemented!(),
LowLevel::ListIncref => unimplemented!(),
LowLevel::ListDecref => unimplemented!(),
LowLevel::ListElemDecFnPtr => unimplemented!(),
LowLevel::SetJmp => unimplemented!(),
LowLevel::LongJmp => unimplemented!(),