rust-analyzer/crates/ra_hir_def/src/diagnostics.rs

29 lines
670 B
Rust
Raw Normal View History

2019-11-03 21:11:37 +00:00
//! Diagnostics produced by `hir_def`.
2019-10-31 15:45:10 +00:00
use std::any::Any;
use hir_expand::diagnostics::Diagnostic;
2019-11-03 22:14:17 +00:00
use ra_db::RelativePathBuf;
2019-10-31 15:45:10 +00:00
use ra_syntax::{ast, AstPtr, SyntaxNodePtr};
use hir_expand::{HirFileId, Source};
#[derive(Debug)]
pub struct UnresolvedModule {
pub file: HirFileId,
pub decl: AstPtr<ast::Module>,
pub candidate: RelativePathBuf,
}
impl Diagnostic for UnresolvedModule {
fn message(&self) -> String {
"unresolved module".to_string()
}
fn source(&self) -> Source<SyntaxNodePtr> {
2019-11-20 06:40:36 +00:00
Source { file_id: self.file, value: self.decl.into() }
2019-10-31 15:45:10 +00:00
}
fn as_any(&self) -> &(dyn Any + Send + 'static) {
self
}
}