2020-02-06 00:33:18 +00:00
|
|
|
//! Module that defines `SyntaxError`.
|
2019-09-30 08:58:53 +00:00
|
|
|
|
2018-11-04 15:45:22 +00:00
|
|
|
use std::fmt;
|
|
|
|
|
2020-02-06 00:33:18 +00:00
|
|
|
use crate::{TextRange, TextUnit};
|
2018-11-04 15:45:22 +00:00
|
|
|
|
2020-02-06 00:33:18 +00:00
|
|
|
/// Represents the result of unsuccessful tokenization, parsing
|
|
|
|
/// or semmantical analyzis.
|
2018-11-04 15:45:22 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2020-02-06 00:33:18 +00:00
|
|
|
pub struct SyntaxError(String, TextRange);
|
|
|
|
|
|
|
|
// FIXME: there was an unused SyntaxErrorKind previously (before this enum was removed)
|
|
|
|
// It was introduced in this PR: https://github.com/rust-analyzer/rust-analyzer/pull/846/files#diff-827da9b03b8f9faa1bade5cdd44d5dafR95
|
|
|
|
// but it was not removed by a mistake.
|
|
|
|
//
|
|
|
|
// So, we need to find a place where to stick validation for attributes in match clauses.
|
|
|
|
// Code before refactor:
|
|
|
|
// InvalidMatchInnerAttr => {
|
|
|
|
// write!(f, "Inner attributes are only allowed directly after the opening brace of the match expression")
|
|
|
|
// }
|
2019-05-29 07:12:08 +00:00
|
|
|
|
2018-11-04 15:45:22 +00:00
|
|
|
impl SyntaxError {
|
2020-02-06 00:33:18 +00:00
|
|
|
pub fn new(message: impl Into<String>, range: TextRange) -> Self {
|
|
|
|
Self(message.into(), range)
|
2018-11-05 17:38:34 +00:00
|
|
|
}
|
2020-02-06 00:33:18 +00:00
|
|
|
pub fn new_at_offset(message: impl Into<String>, offset: TextUnit) -> Self {
|
|
|
|
Self(message.into(), TextRange::offset_len(offset, 1.into()))
|
2018-11-07 10:35:33 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 00:33:18 +00:00
|
|
|
pub fn message(&self) -> &str {
|
|
|
|
&self.0
|
2018-11-05 17:38:34 +00:00
|
|
|
}
|
2020-02-06 00:33:18 +00:00
|
|
|
pub fn range(&self) -> &TextRange {
|
|
|
|
&self.1
|
2018-11-05 17:38:34 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 00:33:18 +00:00
|
|
|
pub fn with_range(mut self, range: TextRange) -> Self {
|
|
|
|
self.1 = range;
|
2018-11-05 17:38:34 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for SyntaxError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2020-02-06 00:33:18 +00:00
|
|
|
self.0.fmt(f)
|
2019-05-07 16:38:26 +00:00
|
|
|
}
|
|
|
|
}
|