(symbol)
| 19176 | } |
| 19177 | ts.isEmptyArrayLiteral = isEmptyArrayLiteral; |
| 19178 | function getLocalSymbolForExportDefault(symbol) { |
| 19179 | if (!isExportDefaultSymbol(symbol) || !symbol.declarations) |
| 19180 | return undefined; |
| 19181 | for (var _i = 0, _a = symbol.declarations; _i < _a.length; _i++) { |
| 19182 | var decl = _a[_i]; |
| 19183 | if (decl.localSymbol) |
| 19184 | return decl.localSymbol; |
| 19185 | } |
| 19186 | return undefined; |
| 19187 | } |
| 19188 | ts.getLocalSymbolForExportDefault = getLocalSymbolForExportDefault; |
| 19189 | function isExportDefaultSymbol(symbol) { |
| 19190 | return symbol && ts.length(symbol.declarations) > 0 && hasSyntacticModifier(symbol.declarations[0], 512 /* ModifierFlags.Default */); |
nothing calls this directly
no test coverage detected