(type)
| 69366 | return undefined; |
| 69367 | } |
| 69368 | function tryGetNameFromType(type) { |
| 69369 | return type.flags & 8192 /* TypeFlags.UniqueESSymbol */ ? type.escapedName : |
| 69370 | type.flags & 384 /* TypeFlags.StringOrNumberLiteral */ ? ts.escapeLeadingUnderscores("" + type.value) : undefined; |
| 69371 | } |
| 69372 | function tryGetElementAccessExpressionName(node) { |
| 69373 | if (ts.isStringOrNumericLiteralLike(node.argumentExpression)) { |
| 69374 | return ts.escapeLeadingUnderscores(node.argumentExpression.text); |
no outgoing calls
no test coverage detected
searching dependent graphs…