(symbol)
| 56830 | return links.type || (links.type = instantiateType(getTypeOfSymbol(links.target), links.mapper)); |
| 56831 | } |
| 56832 | function getWriteTypeOfInstantiatedSymbol(symbol) { |
| 56833 | var links = getSymbolLinks(symbol); |
| 56834 | return links.writeType || (links.writeType = instantiateType(getWriteTypeOfSymbol(links.target), links.mapper)); |
| 56835 | } |
| 56836 | function reportCircularityError(symbol) { |
| 56837 | var declaration = symbol.valueDeclaration; |
| 56838 | // Check if variable has type annotation that circularly references the variable itself |
no test coverage detected