Skip to content

Commit 6674be9

Browse files
committed
Add an ErrorGuaranteed to ast::TyKind::Err.
This makes it more like `hir::TyKind::Err`, and avoids a `span_delayed_bug` call in `LoweringContext::lower_ty_direct`. It also requires adding `ast::TyKind::Dummy`, now that `ast::TyKind::Err` can't be used for that purpose in the absence of an error emission. There are a couple of cases that aren't as neat as I would have liked, marked with `FIXME` comments.
1 parent e504c64 commit 6674be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ impl Rewrite for ast::Ty {
859859
})
860860
}
861861
ast::TyKind::CVarArgs => Some("...".to_owned()),
862-
ast::TyKind::Err => Some(context.snippet(self.span).to_owned()),
862+
ast::TyKind::Dummy | ast::TyKind::Err(_) => Some(context.snippet(self.span).to_owned()),
863863
ast::TyKind::Typeof(ref anon_const) => rewrite_call(
864864
context,
865865
"typeof",

0 commit comments

Comments
 (0)