(fileName: string)
| 221 | } |
| 222 | |
| 223 | function getOutliningSpans(fileName: string): ts.OutliningSpan[] { |
| 224 | return withFallback(fileName, (ls) => ls.getOutliningSpans(fileName)) ?? []; |
| 225 | } |
| 226 | |
| 227 | function getTcb(fileName: string, position: number): GetTcbResponse | undefined { |
| 228 | return ngLS.getTcb(fileName, position); |
nothing calls this directly
no test coverage detected
searching dependent graphs…