mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
lowlevel isUnique
This commit is contained in:
parent
2435bdb41a
commit
ed46a1f2cb
8 changed files with 28 additions and 1 deletions
|
@ -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!(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue