We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e801c2 commit 3dee60fCopy full SHA for 3dee60f
1 file changed
src/harness/harnessLanguageService.ts
@@ -315,13 +315,6 @@ namespace Harness.LanguageService {
315
class LanguageServiceShimProxy implements ts.LanguageService {
316
constructor(private shim: ts.LanguageServiceShim) {
317
}
318
- private unwrappJSONCallResult(result: string): any {
319
- const parsedResult = JSON.parse(result);
320
- if (parsedResult.error) {
321
- throw new Error("Language Service Shim Error: " + JSON.stringify(parsedResult.error));
322
- }
323
- return parsedResult.result;
324
325
cleanupSemanticCache(): void {
326
this.shim.cleanupSemanticCache();
327
0 commit comments