Fix endLineNumber assignment in Problem Matcher

location.endLineNumber is defined in the Location interface, also in problemMatcher.ts
This commit is contained in:
Igor Rafael de Sousa
2018-12-26 21:42:10 -05:00
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
};