(
fileName: string,
position: number,
options: ts.SignatureHelpItemsOptions,
)
| 213 | } |
| 214 | |
| 215 | function getSignatureHelpItems( |
| 216 | fileName: string, |
| 217 | position: number, |
| 218 | options: ts.SignatureHelpItemsOptions, |
| 219 | ): ts.SignatureHelpItems | undefined { |
| 220 | return withFallback(fileName, (ls) => ls.getSignatureHelpItems(fileName, position, options)); |
| 221 | } |
| 222 | |
| 223 | function getOutliningSpans(fileName: string): ts.OutliningSpan[] { |
| 224 | return withFallback(fileName, (ls) => ls.getOutliningSpans(fileName)) ?? []; |
nothing calls this directly
no test coverage detected
searching dependent graphs…