(symbol)
| 2829 | } |
| 2830 | Debug.getFunctionName = getFunctionName; |
| 2831 | function formatSymbol(symbol) { |
| 2832 | return "{ name: ".concat(ts.unescapeLeadingUnderscores(symbol.escapedName), "; flags: ").concat(formatSymbolFlags(symbol.flags), "; declarations: ").concat(ts.map(symbol.declarations, function (node) { return formatSyntaxKind(node.kind); }), " }"); |
| 2833 | } |
| 2834 | Debug.formatSymbol = formatSymbol; |
| 2835 | /** |
| 2836 | * Formats an enum value as a string for debugging and debug assertions. |
nothing calls this directly
no test coverage detected
searching dependent graphs…