Remove getCurrentDirectory and getDefaultLibFilename from LanguageServiceShimHost

This commit is contained in:
Yui T 2014-09-10 16:10:40 -07:00
parent bf7e7b6cc2
commit 26fbb987bb

View file

@ -53,8 +53,6 @@ module ts {
getScriptSnapshot(fileName: string): ScriptSnapshotShim;
getLocalizedDiagnosticMessages(): string;
getCancellationToken(): CancellationToken;
getDefaultLibFilename(): string;
getCurrentDirectory(): string;
}
//
@ -367,14 +365,6 @@ module ts {
public getCancellationToken(): CancellationToken {
return this.shimHost.getCancellationToken();
}
getDefaultLibFilename(): string {
return this.shimHost.getDefaultLibFilename();
}
getCurrentDirectory(): string {
return this.shimHost.getCurrentDirectory();
}
}
function simpleForwardCall(logger: Logger, actionDescription: string, action: () => any): any {