mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
Get low-level ops compiling
This commit is contained in:
parent
b75f061f4f
commit
dec5c3a062
19 changed files with 447 additions and 296 deletions
|
@ -630,8 +630,13 @@ pub fn annotate_usage(expr: &Expr, usage: &mut VarUsage) {
|
|||
}
|
||||
}
|
||||
}
|
||||
RunLowLevel(op) => {
|
||||
todo!("TODO implement UNIQ RunLowLevel for {:?}", op);
|
||||
RunLowLevel { op, args, ret_var } => {
|
||||
todo!(
|
||||
"TODO implement UNIQ RunLowLevel for {:?}({:?}) -> {:?}",
|
||||
op,
|
||||
args,
|
||||
ret_var
|
||||
);
|
||||
}
|
||||
Closure(_, _, _, _, body) => {
|
||||
annotate_usage(&body.0.value, usage);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue