2017-02-04 22:07:54 -06:00
|
|
|
//! lint when there is an enum with no variants
|
|
|
|
|
|
|
|
use rustc::lint::*;
|
|
|
|
use rustc::hir::*;
|
2017-02-04 22:52:44 -06:00
|
|
|
use utils::span_lint_and_then;
|
2017-02-04 22:07:54 -06:00
|
|
|
|
|
|
|
/// **What it does:** Checks for `enum`s with no variants.
|
|
|
|
///
|
2017-02-04 23:09:54 -06:00
|
|
|
/// **Why is this bad?** Enum's with no variants should be replaced with `!`, the uninhabited type,
|
|
|
|
/// or a wrapper around it.
|
2017-02-04 22:07:54 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// enum Test {}
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub EMPTY_ENUM,
|
2017-02-04 22:52:44 -06:00
|
|
|
Allow,
|
2017-02-04 22:07:54 -06:00
|
|
|
"enum with no variants"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct EmptyEnum;
|
|
|
|
|
|
|
|
impl LintPass for EmptyEnum {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(EMPTY_ENUM)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for EmptyEnum {
|
|
|
|
fn check_item(&mut self, cx: &LateContext, item: &Item) {
|
|
|
|
let did = cx.tcx.hir.local_def_id(item.id);
|
2017-02-04 22:52:44 -06:00
|
|
|
if let ItemEnum(..) = item.node {
|
2017-02-04 22:07:54 -06:00
|
|
|
let ty = cx.tcx.item_type(did);
|
|
|
|
let adt = ty.ty_adt_def().expect("already checked whether this is an enum");
|
2017-02-04 22:52:44 -06:00
|
|
|
if adt.variants.is_empty() {
|
|
|
|
span_lint_and_then(cx, EMPTY_ENUM, item.span, "enum with no variants", |db| {
|
|
|
|
db.span_help(item.span,
|
|
|
|
"consider using the uninhabited type `!` or a wrapper around it");
|
2017-02-04 22:07:54 -06:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|