(node)
| 17488 | } |
| 17489 | ts.isStringOrNumericLiteralLike = isStringOrNumericLiteralLike; |
| 17490 | function isSignedNumericLiteral(node) { |
| 17491 | return ts.isPrefixUnaryExpression(node) && (node.operator === 39 /* SyntaxKind.PlusToken */ || node.operator === 40 /* SyntaxKind.MinusToken */) && ts.isNumericLiteral(node.operand); |
| 17492 | } |
| 17493 | ts.isSignedNumericLiteral = isSignedNumericLiteral; |
| 17494 | /** |
| 17495 | * A declaration has a dynamic name if all of the following are true: |
no outgoing calls
no test coverage detected