From 26fbb987bbdb65ce7c9b7dbc64a6050bde0cf031 Mon Sep 17 00:00:00 2001 From: Yui T Date: Wed, 10 Sep 2014 16:10:40 -0700 Subject: [PATCH] Remove getCurrentDirectory and getDefaultLibFilename from LanguageServiceShimHost --- src/services/shims.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/services/shims.ts b/src/services/shims.ts index 4f622d7a212..ba7c73d87e3 100644 --- a/src/services/shims.ts +++ b/src/services/shims.ts @@ -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 {