mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Fix endLineNumber assignment in Problem Matcher
location.endLineNumber is defined in the Location interface, also in problemMatcher.ts
This commit is contained in:
committed by
GitHub
parent
577f744a3e
commit
97ea1aa75b
@@ -289,7 +289,7 @@ abstract class AbstractLineMatcher implements ILineMatcher {
|
||||
severity: this.getSeverity(data),
|
||||
startLineNumber: location.startLineNumber,
|
||||
startColumn: location.startCharacter,
|
||||
endLineNumber: location.startLineNumber,
|
||||
endLineNumber: location.endLineNumber,
|
||||
endColumn: location.endCharacter,
|
||||
message: data.message
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user