Skip to content

Commit 028e202

Browse files
committed
Update LKG
1 parent bab06f1 commit 028e202

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/tsserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53200,7 +53200,7 @@ var ts;
5320053200
return this.shimHost.getCurrentDirectory();
5320153201
};
5320253202
LanguageServiceShimHostAdapter.prototype.getDirectories = function (path) {
53203-
return this.shimHost.getDirectories(path);
53203+
return JSON.parse(this.shimHost.getDirectories(path));
5320453204
};
5320553205
LanguageServiceShimHostAdapter.prototype.getDefaultLibFileName = function (options) {
5320653206
return this.shimHost.getDefaultLibFileName(JSON.stringify(options));

lib/tsserverlibrary.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8728,7 +8728,7 @@ declare namespace ts {
87288728
getLocalizedDiagnosticMessages(): string;
87298729
getCancellationToken(): HostCancellationToken;
87308730
getCurrentDirectory(): string;
8731-
getDirectories(path: string): string[];
8731+
getDirectories(path: string): string;
87328732
getDefaultLibFileName(options: string): string;
87338733
getNewLine?(): string;
87348734
getProjectVersion?(): string;

lib/tsserverlibrary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52966,7 +52966,7 @@ var ts;
5296652966
return this.shimHost.getCurrentDirectory();
5296752967
};
5296852968
LanguageServiceShimHostAdapter.prototype.getDirectories = function (path) {
52969-
return this.shimHost.getDirectories(path);
52969+
return JSON.parse(this.shimHost.getDirectories(path));
5297052970
};
5297152971
LanguageServiceShimHostAdapter.prototype.getDefaultLibFileName = function (options) {
5297252972
return this.shimHost.getDefaultLibFileName(JSON.stringify(options));

lib/typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59705,7 +59705,7 @@ var ts;
5970559705
return this.shimHost.getCurrentDirectory();
5970659706
};
5970759707
LanguageServiceShimHostAdapter.prototype.getDirectories = function (path) {
59708-
return this.shimHost.getDirectories(path);
59708+
return JSON.parse(this.shimHost.getDirectories(path));
5970959709
};
5971059710
LanguageServiceShimHostAdapter.prototype.getDefaultLibFileName = function (options) {
5971159711
return this.shimHost.getDefaultLibFileName(JSON.stringify(options));

lib/typescriptServices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59705,7 +59705,7 @@ var ts;
5970559705
return this.shimHost.getCurrentDirectory();
5970659706
};
5970759707
LanguageServiceShimHostAdapter.prototype.getDirectories = function (path) {
59708-
return this.shimHost.getDirectories(path);
59708+
return JSON.parse(this.shimHost.getDirectories(path));
5970959709
};
5971059710
LanguageServiceShimHostAdapter.prototype.getDefaultLibFileName = function (options) {
5971159711
return this.shimHost.getDefaultLibFileName(JSON.stringify(options));

0 commit comments

Comments
 (0)