(symbol)
| 56748 | return links.writeType; |
| 56749 | } |
| 56750 | function getBaseTypeVariableOfClass(symbol) { |
| 56751 | var baseConstructorType = getBaseConstructorTypeOfClass(getDeclaredTypeOfClassOrInterface(symbol)); |
| 56752 | return baseConstructorType.flags & 8650752 /* TypeFlags.TypeVariable */ ? baseConstructorType : |
| 56753 | baseConstructorType.flags & 2097152 /* TypeFlags.Intersection */ ? ts.find(baseConstructorType.types, function (t) { return !!(t.flags & 8650752 /* TypeFlags.TypeVariable */); }) : |
| 56754 | undefined; |
| 56755 | } |
| 56756 | function getTypeOfFuncClassEnumModule(symbol) { |
| 56757 | var links = getSymbolLinks(symbol); |
| 56758 | var originalLinks = links; |
no test coverage detected
searching dependent graphs…