chore: eliminate todo!s

This commit is contained in:
Shunsuke Shibayama 2023-08-24 23:54:31 +09:00
parent 936b6e2f95
commit 46c7982335
5 changed files with 46 additions and 22 deletions

View file

@ -1441,8 +1441,10 @@ impl Context {
Predicate::Const(name) => {
if let Some(value) = self.rec_get_const_obj(name) {
value.class()
} else if DEBUG_MODE {
todo!("get_pred_type({name})");
} else {
todo!("get_pred_type({name})")
Obj
}
}
}