()
| 1934 | kind: &str, |
| 1935 | a: &KExpr<M>, |
| 1936 | b: &KExpr<M>, |
| 1937 | wa: Option<&KExpr<M>>, |
| 1938 | wb: Option<&KExpr<M>>, |
| 1939 | ) { |
| 1940 | let Some(filter) = IX_DEF_EQ_MAX_DUMP.as_ref() else { |
| 1941 | return; |
| 1942 | }; |
| 1943 | if !self.debug_label_matches_env() { |
| 1944 | return; |
| 1945 | } |
| 1946 | let a_head = head_const_name(a).unwrap_or_else(|| "<none>".to_string()); |
nothing calls this directly
no test coverage detected