()
| 1925 | /// Meta mode. Returns `None` if the head isn't a `Const`. |
| 1926 | fn head_const_name<M: KernelMode>(e: &KExpr<M>) -> Option<String> { |
| 1927 | let id = head_const_id(e)?; |
| 1928 | Some(format!("{id}")) |
| 1929 | } |
| 1930 | |
| 1931 | impl<M: KernelMode> TypeChecker<'_, M> { |
| 1932 | fn dump_def_eq_max( |
| 1933 | &self, |
| 1934 | kind: &str, |
| 1935 | a: &KExpr<M>, |
| 1936 | b: &KExpr<M>, |
nothing calls this directly
no test coverage detected