(symbol)
| 19187 | } |
| 19188 | ts.getLocalSymbolForExportDefault = getLocalSymbolForExportDefault; |
| 19189 | function isExportDefaultSymbol(symbol) { |
| 19190 | return symbol && ts.length(symbol.declarations) > 0 && hasSyntacticModifier(symbol.declarations[0], 512 /* ModifierFlags.Default */); |
| 19191 | } |
| 19192 | /** Return ".ts", ".d.ts", or ".tsx", if that is the extension. */ |
| 19193 | function tryExtractTSExtension(fileName) { |
| 19194 | return ts.find(supportedTSExtensionsForExtractExtension, function (extension) { return ts.fileExtensionIs(fileName, extension); }); |
no test coverage detected
searching dependent graphs…