Fix typo in type name

This commit is contained in:
Mohamed Hegazy
2015-02-04 12:16:47 -08:00
parent 42457636b6
commit c2bca0e84d

View File

@@ -109,7 +109,7 @@ module Harness.LanguageService {
}
public isCancellationRequested() {
return this.cancellationToken && this.cancellationToken.isCancellationRequested();
return this.cancellationToken && this.cancellationToken.isCancellationRequested();
}
}
@@ -210,7 +210,7 @@ module Harness.LanguageService {
return script ? script.version.toString() : undefined;
}
log(s: string): void { }
trace(s: string): void { }
trace(s: string): void { }
error(s: string): void { }
}
@@ -391,7 +391,7 @@ module Harness.LanguageService {
}
getSourceFile(filename: string): ts.SourceFile {
throw new Error("SourceFile can not be marshalled accross the shim layer.");
}
}
dispose(): void { this.shim.dispose({}); }
}