mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
Log errors
This commit is contained in:
parent
8f5330cb07
commit
13110f48e9
3 changed files with 21 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
|||
mod event;
|
||||
mod input;
|
||||
|
||||
use std::cell::Cell;
|
||||
|
||||
use {
|
||||
lexer::Token,
|
||||
parser_api::Parser,
|
||||
|
@ -51,6 +53,7 @@ pub(crate) struct ParserImpl<'t> {
|
|||
|
||||
pos: InputPosition,
|
||||
events: Vec<Event>,
|
||||
steps: Cell<u32>,
|
||||
}
|
||||
|
||||
impl<'t> ParserImpl<'t> {
|
||||
|
@ -60,6 +63,7 @@ impl<'t> ParserImpl<'t> {
|
|||
|
||||
pos: InputPosition::new(),
|
||||
events: Vec::new(),
|
||||
steps: Cell::new(0),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -91,6 +95,12 @@ impl<'t> ParserImpl<'t> {
|
|||
}
|
||||
|
||||
pub(super) fn nth(&self, n: u32) -> SyntaxKind {
|
||||
let steps = self.steps.get();
|
||||
if steps > 10_000_000 {
|
||||
panic!("the parser seems stuck");
|
||||
}
|
||||
self.steps.set(steps + 1);
|
||||
|
||||
self.inp.kind(self.pos + n)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue