mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Merge #5395
5395: Show fewer syntax errors r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
57652fc9d4
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,8 @@ pub(crate) fn diagnostics(db: &RootDatabase, file_id: FileId) -> Vec<Diagnostic>
|
||||||
let parse = db.parse(file_id);
|
let parse = db.parse(file_id);
|
||||||
let mut res = Vec::new();
|
let mut res = Vec::new();
|
||||||
|
|
||||||
// [#34344] Only take first 500 errors to prevent slowing down editor/ide, the number 500 is chosen arbitrarily.
|
// [#34344] Only take first 128 errors to prevent slowing down editor/ide, the number 128 is chosen arbitrarily.
|
||||||
res.extend(parse.errors().iter().take(500).map(|err| Diagnostic {
|
res.extend(parse.errors().iter().take(128).map(|err| Diagnostic {
|
||||||
range: err.range(),
|
range: err.range(),
|
||||||
message: format!("Syntax Error: {}", err),
|
message: format!("Syntax Error: {}", err),
|
||||||
severity: Severity::Error,
|
severity: Severity::Error,
|
||||||
|
|
Loading…
Reference in a new issue