Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/src/parser.rs')
| -rw-r--r-- | crates/parser/src/parser.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/parser/src/parser.rs b/crates/parser/src/parser.rs index 4c891108a6..4fc734f9c6 100644 --- a/crates/parser/src/parser.rs +++ b/crates/parser/src/parser.rs @@ -8,7 +8,6 @@ use limit::Limit; use crate::{ event::Event, tokens::Tokens, - ParseError, SyntaxKind::{self, EOF, ERROR, TOMBSTONE}, TokenSet, T, }; @@ -196,7 +195,7 @@ impl<'t> Parser<'t> { /// structured errors with spans and notes, like rustc /// does. pub(crate) fn error<T: Into<String>>(&mut self, message: T) { - let msg = ParseError(Box::new(message.into())); + let msg = message.into(); self.push_event(Event::Error { msg }); } |