2019-11-27 14:46:02 +00:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
|
|
|
use std::any::Any;
|
|
|
|
|
2019-11-28 09:50:26 +00:00
|
|
|
use hir_expand::{db::AstDatabase, name::Name, HirFileId, InFile};
|
2020-04-17 11:55:05 +00:00
|
|
|
use ra_syntax::{ast, AstNode, AstPtr, SyntaxNodePtr};
|
2020-03-28 10:20:34 +00:00
|
|
|
use stdx::format_to;
|
2019-11-27 14:46:02 +00:00
|
|
|
|
2020-06-09 21:11:16 +00:00
|
|
|
pub use hir_def::{diagnostics::UnresolvedModule, expr::MatchArm, path::Path};
|
2019-11-27 14:46:02 +00:00
|
|
|
pub use hir_expand::diagnostics::{AstDiagnostic, Diagnostic, DiagnosticSink};
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct NoSuchField {
|
|
|
|
pub file: HirFileId,
|
|
|
|
pub field: AstPtr<ast::RecordField>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Diagnostic for NoSuchField {
|
|
|
|
fn message(&self) -> String {
|
|
|
|
"no such field".to_string()
|
|
|
|
}
|
|
|
|
|
2019-11-28 09:50:26 +00:00
|
|
|
fn source(&self) -> InFile<SyntaxNodePtr> {
|
2020-04-17 11:06:02 +00:00
|
|
|
InFile::new(self.file, self.field.clone().into())
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn as_any(&self) -> &(dyn Any + Send + 'static) {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-09 21:11:16 +00:00
|
|
|
impl AstDiagnostic for NoSuchField {
|
|
|
|
type AST = ast::RecordField;
|
|
|
|
|
|
|
|
fn ast(&self, db: &impl AstDatabase) -> Self::AST {
|
|
|
|
let root = db.parse_or_expand(self.source().file_id).unwrap();
|
|
|
|
let node = self.source().value.to_node(&root);
|
|
|
|
ast::RecordField::cast(node).unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 14:46:02 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct MissingFields {
|
|
|
|
pub file: HirFileId,
|
|
|
|
pub field_list: AstPtr<ast::RecordFieldList>,
|
|
|
|
pub missed_fields: Vec<Name>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Diagnostic for MissingFields {
|
|
|
|
fn message(&self) -> String {
|
2020-03-28 10:20:34 +00:00
|
|
|
let mut buf = String::from("Missing structure fields:\n");
|
2019-11-27 14:46:02 +00:00
|
|
|
for field in &self.missed_fields {
|
2020-05-27 16:15:19 +00:00
|
|
|
format_to!(buf, "- {}\n", field);
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
2020-03-28 10:20:34 +00:00
|
|
|
buf
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
2019-11-28 09:50:26 +00:00
|
|
|
fn source(&self) -> InFile<SyntaxNodePtr> {
|
2020-04-10 22:27:00 +00:00
|
|
|
InFile { file_id: self.file, value: self.field_list.clone().into() }
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
fn as_any(&self) -> &(dyn Any + Send + 'static) {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AstDiagnostic for MissingFields {
|
|
|
|
type AST = ast::RecordFieldList;
|
|
|
|
|
|
|
|
fn ast(&self, db: &impl AstDatabase) -> Self::AST {
|
|
|
|
let root = db.parse_or_expand(self.source().file_id).unwrap();
|
|
|
|
let node = self.source().value.to_node(&root);
|
|
|
|
ast::RecordFieldList::cast(node).unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-09 03:23:51 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct MissingPatFields {
|
|
|
|
pub file: HirFileId,
|
|
|
|
pub field_list: AstPtr<ast::RecordFieldPatList>,
|
|
|
|
pub missed_fields: Vec<Name>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Diagnostic for MissingPatFields {
|
|
|
|
fn message(&self) -> String {
|
|
|
|
let mut buf = String::from("Missing structure fields:\n");
|
|
|
|
for field in &self.missed_fields {
|
2020-05-27 16:15:19 +00:00
|
|
|
format_to!(buf, "- {}\n", field);
|
2020-04-09 03:23:51 +00:00
|
|
|
}
|
|
|
|
buf
|
|
|
|
}
|
|
|
|
fn source(&self) -> InFile<SyntaxNodePtr> {
|
2020-04-10 22:27:00 +00:00
|
|
|
InFile { file_id: self.file, value: self.field_list.clone().into() }
|
2020-04-09 03:23:51 +00:00
|
|
|
}
|
|
|
|
fn as_any(&self) -> &(dyn Any + Send + 'static) {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-24 11:40:58 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct MissingMatchArms {
|
|
|
|
pub file: HirFileId,
|
2020-04-06 13:55:25 +00:00
|
|
|
pub match_expr: AstPtr<ast::Expr>,
|
2020-03-24 11:40:58 +00:00
|
|
|
pub arms: AstPtr<ast::MatchArmList>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Diagnostic for MissingMatchArms {
|
|
|
|
fn message(&self) -> String {
|
|
|
|
String::from("Missing match arm")
|
|
|
|
}
|
|
|
|
fn source(&self) -> InFile<SyntaxNodePtr> {
|
2020-04-10 22:27:00 +00:00
|
|
|
InFile { file_id: self.file, value: self.match_expr.clone().into() }
|
2020-03-24 11:40:58 +00:00
|
|
|
}
|
|
|
|
fn as_any(&self) -> &(dyn Any + Send + 'static) {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 14:46:02 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct MissingOkInTailExpr {
|
|
|
|
pub file: HirFileId,
|
|
|
|
pub expr: AstPtr<ast::Expr>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Diagnostic for MissingOkInTailExpr {
|
|
|
|
fn message(&self) -> String {
|
|
|
|
"wrap return expression in Ok".to_string()
|
|
|
|
}
|
2019-11-28 09:50:26 +00:00
|
|
|
fn source(&self) -> InFile<SyntaxNodePtr> {
|
2020-04-10 22:27:00 +00:00
|
|
|
InFile { file_id: self.file, value: self.expr.clone().into() }
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
fn as_any(&self) -> &(dyn Any + Send + 'static) {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AstDiagnostic for MissingOkInTailExpr {
|
|
|
|
type AST = ast::Expr;
|
|
|
|
|
|
|
|
fn ast(&self, db: &impl AstDatabase) -> Self::AST {
|
|
|
|
let root = db.parse_or_expand(self.file).unwrap();
|
|
|
|
let node = self.source().value.to_node(&root);
|
|
|
|
ast::Expr::cast(node).unwrap()
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 17:48:03 +00:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct BreakOutsideOfLoop {
|
|
|
|
pub file: HirFileId,
|
|
|
|
pub expr: AstPtr<ast::Expr>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Diagnostic for BreakOutsideOfLoop {
|
|
|
|
fn message(&self) -> String {
|
|
|
|
"break outside of loop".to_string()
|
|
|
|
}
|
|
|
|
fn source(&self) -> InFile<SyntaxNodePtr> {
|
|
|
|
InFile { file_id: self.file, value: self.expr.clone().into() }
|
|
|
|
}
|
|
|
|
fn as_any(&self) -> &(dyn Any + Send + 'static) {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AstDiagnostic for BreakOutsideOfLoop {
|
|
|
|
type AST = ast::Expr;
|
|
|
|
|
|
|
|
fn ast(&self, db: &impl AstDatabase) -> Self::AST {
|
|
|
|
let root = db.parse_or_expand(self.file).unwrap();
|
|
|
|
let node = self.source().value.to_node(&root);
|
|
|
|
ast::Expr::cast(node).unwrap()
|
|
|
|
}
|
|
|
|
}
|