We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4802b4b commit a5bd919Copy full SHA for a5bd919
1 file changed
src/services/services.ts
@@ -2443,6 +2443,11 @@ module ts {
2443
};
2444
}
2445
2446
+ // If symbolName is undefined, all symbols at the specified are returned. If symbolName
2447
+ // is not undefined, then the first symbol with that name at the specified position
2448
+ // will be returned. Calling without symbolName is useful when you want the entire
2449
+ // list of symbols (like for getCompletionsAtPosition). Calling with a symbolName is
2450
+ // useful when you want information about a single symbol (like for getCompletionEntryDetails).
2451
function getCompletionData(fileName: string, position: number, symbolName?: string) {
2452
let result = getCompletionDataWorker(fileName, position, symbolName);
2453
if (!result) {
0 commit comments