(expression)
| 19171 | } |
| 19172 | ts.isEmptyObjectLiteral = isEmptyObjectLiteral; |
| 19173 | function isEmptyArrayLiteral(expression) { |
| 19174 | return expression.kind === 204 /* SyntaxKind.ArrayLiteralExpression */ && |
| 19175 | expression.elements.length === 0; |
| 19176 | } |
| 19177 | ts.isEmptyArrayLiteral = isEmptyArrayLiteral; |
| 19178 | function getLocalSymbolForExportDefault(symbol) { |
| 19179 | if (!isExportDefaultSymbol(symbol) || !symbol.declarations) |
no outgoing calls
no test coverage detected
searching dependent graphs…