()
| 847 | write!(f, "_")?; |
| 848 | } |
| 849 | write!(f, " : ")?; |
| 850 | fmt_expr(ty, f, depth + 1)?; |
| 851 | write!(f, " := ")?; |
| 852 | fmt_expr(val, f, depth + 1)?; |
| 853 | write!(f, " in ")?; |
| 854 | fmt_expr(body, f, depth + 1)?; |
| 855 | write!(f, ")") |
| 856 | }, |
| 857 | ExprData::Prj(id, field, val, _) => { |
no outgoing calls
no test coverage detected