aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_diagnostics/src/handlers/unimplemented_builtin_macro.rs
blob: e879de75cd8477f3d971cc244500b47074df22f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::{Diagnostic, DiagnosticsContext, Severity};

// Diagnostic: unimplemented-builtin-macro
//
// This diagnostic is shown for builtin macros which are not yet implemented by rust-analyzer
pub(crate) fn unimplemented_builtin_macro(
    ctx: &DiagnosticsContext<'_>,
    d: &hir::UnimplementedBuiltinMacro,
) -> Diagnostic {
    Diagnostic::new(
        "unimplemented-builtin-macro",
        "unimplemented built-in macro".to_string(),
        ctx.sema.diagnostics_display_range(d.node.clone()).range,
    )
    .severity(Severity::WeakWarning)
}