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 {