mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-19 03:20:14 +00:00
Switch dev backend from unimplemented! to todo!
This commit is contained in:
parent
1ce648ac27
commit
7abbf3a043
5 changed files with 83 additions and 116 deletions
|
@ -104,7 +104,7 @@ pub fn build_module<'a>(
|
|||
),
|
||||
)
|
||||
}
|
||||
x => unimplemented!("the target, {:?}, is not yet implemented", x),
|
||||
x => todo!("the target, {:?}", x),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -157,7 +157,7 @@ fn generate_wrapper<'a, B: Backend<'a>>(
|
|||
Err(e) => internal_error!("{:?}", e),
|
||||
}
|
||||
} else {
|
||||
unimplemented!("failed to find fn symbol for {:?}", wraps);
|
||||
internal_error!("failed to find fn symbol for {:?}", wraps);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue