Merge pull request #10 from jpoppe/patch-1

fixed typo: getDignosticsKind -> getDiagnosticsKind
This commit is contained in:
Qiming zhao 2019-02-13 02:46:34 +08:00 committed by GitHub
commit cb75962a35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -692,7 +692,7 @@ export default class TypeScriptServiceClient implements ITypeScriptServiceClient
const diagnosticEvent = event as Proto.DiagnosticEvent
if (diagnosticEvent.body && diagnosticEvent.body.diagnostics) {
this._onDiagnosticsReceived.fire({
kind: getDignosticsKind(event),
kind: getDiagnosticsKind(event),
resource: this.asUrl(diagnosticEvent.body.file),
diagnostics: diagnosticEvent.body.diagnostics
})
@ -821,7 +821,7 @@ export default class TypeScriptServiceClient implements ITypeScriptServiceClient
}
}
function getDignosticsKind(event: Proto.Event): DiagnosticKind {
function getDiagnosticsKind(event: Proto.Event): DiagnosticKind {
switch (event.event) {
case 'syntaxDiag':
return DiagnosticKind.Syntax