(symbol)
| 53590 | } |
| 53591 | } |
| 53592 | function symbolToEntityNameNode(symbol) { |
| 53593 | var identifier = ts.factory.createIdentifier(ts.unescapeLeadingUnderscores(symbol.escapedName)); |
| 53594 | return symbol.parent ? ts.factory.createQualifiedName(symbolToEntityNameNode(symbol.parent), identifier) : identifier; |
| 53595 | } |
| 53596 | function symbolToTypeNode(symbol, context, meaning, overrideTypeArguments) { |
| 53597 | var _a, _b, _c, _d; |
| 53598 | var chain = lookupSymbolChain(symbol, context, meaning, !(context.flags & 16384 /* NodeBuilderFlags.UseAliasDefinedOutsideCurrentScope */)); // If we're using aliases outside the current scope, dont bother with the module |
no outgoing calls
no test coverage detected
searching dependent graphs…