2020-02-17 14:50:58 -06:00
|
|
|
//! See docs for `SyntaxError`.
|
2019-09-30 03:58:53 -05:00
|
|
|
|
2018-11-04 09:45:22 -06:00
|
|
|
use std::fmt;
|
|
|
|
|
2020-02-05 18:33:18 -06:00
|
|
|
use crate::{TextRange, TextUnit};
|
2018-11-04 09:45:22 -06:00
|
|
|
|
2020-02-05 18:33:18 -06:00
|
|
|
/// Represents the result of unsuccessful tokenization, parsing
|
2020-02-06 05:00:39 -06:00
|
|
|
/// or tree validation.
|
2018-11-04 09:45:22 -06:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2020-02-05 18:33:18 -06: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 02:12:08 -05:00
|
|
|
|
2018-11-04 09:45:22 -06:00
|
|
|
impl SyntaxError {
|
2020-02-05 18:33:18 -06:00
|
|
|
pub fn new(message: impl Into<String>, range: TextRange) -> Self {
|
|
|
|
Self(message.into(), range)
|
2018-11-05 11:38:34 -06:00
|
|
|
}
|
2020-02-05 18:33:18 -06:00
|
|
|
pub fn new_at_offset(message: impl Into<String>, offset: TextUnit) -> Self {
|
2020-02-06 07:42:00 -06:00
|
|
|
Self(message.into(), TextRange::offset_len(offset, 0.into()))
|
2018-11-07 04:35:33 -06:00
|
|
|
}
|
|
|
|
|
2020-02-09 18:08:49 -06:00
|
|
|
pub fn range(&self) -> TextRange {
|
|
|
|
self.1
|
2018-11-05 11:38:34 -06:00
|
|
|
}
|
|
|
|
|
2020-02-05 18:33:18 -06:00
|
|
|
pub fn with_range(mut self, range: TextRange) -> Self {
|
|
|
|
self.1 = range;
|
2018-11-05 11:38:34 -06:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for SyntaxError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2020-02-05 18:33:18 -06:00
|
|
|
self.0.fmt(f)
|
2019-05-07 11:38:26 -05:00
|
|
|
}
|
|
|
|
}
|