aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_diagnostics/src/unimplemented_builtin_macro.rs
blob: a600544f0e14d493255079248a25feee4aa5b316 (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(super) 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)
}