2017-02-05 04:07:54 +00:00
|
|
|
//! lint when there is an enum with no variants
|
|
|
|
|
|
|
|
use rustc::lint::*;
|
2018-07-19 07:53:23 +00:00
|
|
|
use rustc::{declare_lint, lint_array};
|
2017-02-05 04:07:54 +00:00
|
|
|
use rustc::hir::*;
|
2018-05-30 08:15:50 +00:00
|
|
|
use crate::utils::span_lint_and_then;
|
2017-02-05 04:07:54 +00:00
|
|
|
|
|
|
|
/// **What it does:** Checks for `enum`s with no variants.
|
|
|
|
///
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **Why is this bad?** Enum's with no variants should be replaced with `!`,
|
|
|
|
/// the uninhabited type,
|
2017-02-05 05:09:54 +00:00
|
|
|
/// or a wrapper around it.
|
2017-02-05 04:07:54 +00:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// enum Test {}
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2017-02-05 04:07:54 +00:00
|
|
|
pub EMPTY_ENUM,
|
2018-03-28 13:24:26 +00:00
|
|
|
pedantic,
|
2017-02-05 04:07:54 +00:00
|
|
|
"enum with no variants"
|
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2017-02-05 04:07:54 +00:00
|
|
|
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);
|
2018-07-16 13:07:39 +00:00
|
|
|
if let ItemKind::Enum(..) = item.node {
|
2017-04-27 12:00:35 +00:00
|
|
|
let ty = cx.tcx.type_of(did);
|
2017-09-05 09:33:04 +00:00
|
|
|
let adt = ty.ty_adt_def()
|
|
|
|
.expect("already checked whether this is an enum");
|
2017-02-05 04:52:44 +00:00
|
|
|
if adt.variants.is_empty() {
|
|
|
|
span_lint_and_then(cx, EMPTY_ENUM, item.span, "enum with no variants", |db| {
|
2017-02-05 16:51:31 +00:00
|
|
|
db.span_help(item.span, "consider using the uninhabited type `!` or a wrapper around it");
|
2017-02-05 04:07:54 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|