This commit is contained in:
Arthur Baars 2023-03-15 13:45:06 +01:00 коммит произвёл GitHub
Родитель 5de0eae992
Коммит fe34ec1378
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -253,9 +253,10 @@ impl<'a> Visitor<'a> {
end_line,
end_column,
);
let mut mesg = self
.diagnostics_writer
.new_entry("parse-error", "Could not process some files due to syntax errors");
let mut mesg = self.diagnostics_writer.new_entry(
"parse-error",
"Could not process some files due to syntax errors",
);
&mesg
.severity(diagnostics::Severity::Warning)
.location(self.path, start_line, start_column, end_line, end_column)
@ -367,7 +368,10 @@ impl<'a> Visitor<'a> {
self.record_parse_error(
loc,
self.diagnostics_writer
.new_entry("parse-error", "Could not process some files due to syntax errors")
.new_entry(
"parse-error",
"Could not process some files due to syntax errors",
)
.severity(diagnostics::Severity::Warning)
.location(self.path, start_line, start_column, end_line, end_column)
.message(