Skip to content

Commit d31f867

Browse files
author
Sam El-Husseini
committed
Adding method stub for the LanguageServiceShimProxy implementation
1 parent 1021e80 commit d31f867

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/harness/harnessLanguageService.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,9 @@ namespace Harness.LanguageService {
408408
getCompletionEntryDetails(fileName: string, position: number, entryName: string): ts.CompletionEntryDetails {
409409
return unwrapJSONCallResult(this.shim.getCompletionEntryDetails(fileName, position, entryName));
410410
}
411+
getCompletionEntrySymbol(fileName: string, position: number, entryName: string): ts.Symbol {
412+
throw new Error("getCompletionEntrySymbol not implemented across the shim layer.");
413+
}
411414
getQuickInfoAtPosition(fileName: string, position: number): ts.QuickInfo {
412415
return unwrapJSONCallResult(this.shim.getQuickInfoAtPosition(fileName, position));
413416
}

0 commit comments

Comments
 (0)