lowlevel isUnique

This commit is contained in:
J.Teeuwissen 2023-04-26 17:23:10 +02:00
parent 2435bdb41a
commit ed46a1f2cb
No known key found for this signature in database
GPG key ID: DB5F7A1ED8D478AD
8 changed files with 28 additions and 1 deletions

View file

@ -117,6 +117,7 @@ pub enum LowLevel {
PtrCast,
RefCountInc,
RefCountDec,
RefCountIsUnique,
BoxExpr,
UnboxExpr,
Unreachable,
@ -221,6 +222,7 @@ macro_rules! map_symbol_to_lowlevel {
LowLevel::PtrCast => unimplemented!(),
LowLevel::RefCountInc => unimplemented!(),
LowLevel::RefCountDec => unimplemented!(),
LowLevel::RefCountIsUnique => unimplemented!(),
// these are not implemented, not sure why
LowLevel::StrFromInt => unimplemented!(),