File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -2443,6 +2443,11 @@ module ts {
2443
2443
} ;
2444
2444
}
2445
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).
2446
2451
function getCompletionData ( fileName : string , position : number , symbolName ?: string ) {
2447
2452
let result = getCompletionDataWorker ( fileName , position , symbolName ) ;
2448
2453
if ( ! result ) {
You can’t perform that action at this time.
0 commit comments