(a, b)
| 53230 | } |
| 53231 | } |
| 53232 | function typesAreSameReference(a, b) { |
| 53233 | return a === b |
| 53234 | || !!a.symbol && a.symbol === b.symbol |
| 53235 | || !!a.aliasSymbol && a.aliasSymbol === b.aliasSymbol; |
| 53236 | } |
| 53237 | function indexInfoToIndexSignatureDeclarationHelper(indexInfo, context, typeNode) { |
| 53238 | var name = ts.getNameFromIndexInfo(indexInfo) || "x"; |
| 53239 | var indexerTypeNode = typeToTypeNodeHelper(indexInfo.keyType, context); |
no outgoing calls
no test coverage detected
searching dependent graphs…