update list generated refcounting functions for dev and wasm

This commit is contained in:
Brendan Hansknecht 2024-04-11 21:33:27 -07:00
parent 3238ee7d0d
commit 48eb9c31a9
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
9 changed files with 163 additions and 354 deletions

View file

@ -48,6 +48,8 @@ pub enum LowLevel {
ListIsUnique,
ListClone,
ListConcatUtf8,
ListIncref,
ListDecref,
NumAdd,
NumAddWrap,
NumAddChecked,
@ -239,6 +241,8 @@ macro_rules! map_symbol_to_lowlevel {
LowLevel::RefCountIncDataPtr => unimplemented!(),
LowLevel::RefCountDecDataPtr=> unimplemented!(),
LowLevel::RefCountIsUnique => unimplemented!(),
LowLevel::ListIncref => unimplemented!(),
LowLevel::ListDecref => unimplemented!(),
LowLevel::SetJmp => unimplemented!(),
LowLevel::LongJmp => unimplemented!(),