mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
Only take first 500 syntax errors
Too many syntax errors make some editor/ide slow, fix #3434.
This commit is contained in:
parent
5fc84f071d
commit
17ff67dd7e
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,8 @@ pub(crate) fn diagnostics(db: &RootDatabase, file_id: FileId) -> Vec<Diagnostic>
|
|||
let parse = db.parse(file_id);
|
||||
let mut res = Vec::new();
|
||||
|
||||
res.extend(parse.errors().iter().map(|err| Diagnostic {
|
||||
// [#34344] Only take first 500 errors to prevent slowing down editor/ide, the number 500 is chosen arbitrarily.
|
||||
res.extend(parse.errors().iter().take(500).map(|err| Diagnostic {
|
||||
range: err.range(),
|
||||
message: format!("Syntax Error: {}", err),
|
||||
severity: Severity::Error,
|
||||
|
|
Loading…
Reference in a new issue