(symbol, localName)
| 55327 | return localName; |
| 55328 | } |
| 55329 | function getInternalSymbolName(symbol, localName) { |
| 55330 | var id = getSymbolId(symbol); |
| 55331 | if (context.remappedSymbolNames.has(id)) { |
| 55332 | return context.remappedSymbolNames.get(id); |
| 55333 | } |
| 55334 | localName = getNameCandidateWorker(symbol, localName); |
| 55335 | // The result of this is going to be used as the symbol's name - lock it in, so `getUnusedName` will also pick it up |
| 55336 | context.remappedSymbolNames.set(id, localName); |
| 55337 | return localName; |
| 55338 | } |
| 55339 | } |
| 55340 | } |
| 55341 | function typePredicateToString(typePredicate, enclosingDeclaration, flags, writer) { |
no test coverage detected