Removing resolvePath from language service host

This commit is contained in:
Richard Knoll
2016-08-16 15:18:25 -07:00
parent 2f4a855ab8
commit 310bce4459
4 changed files with 9 additions and 34 deletions

View File

@@ -306,11 +306,6 @@ namespace ts.server {
throw new Error("No script with name '" + filename + "'");
}
resolvePath(path: string): string {
const result = this.host.resolvePath(path);
return result;
}
fileExists(path: string): boolean {
const result = this.host.fileExists(path);
return result;