(expr)
| 88736 | } |
| 88737 | } |
| 88738 | function isStringOrNumberLiteralExpression(expr) { |
| 88739 | return ts.isStringOrNumericLiteralLike(expr) || |
| 88740 | expr.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ && expr.operator === 40 /* SyntaxKind.MinusToken */ && |
| 88741 | expr.operand.kind === 8 /* SyntaxKind.NumericLiteral */; |
| 88742 | } |
| 88743 | function isBigIntLiteralExpression(expr) { |
| 88744 | return expr.kind === 9 /* SyntaxKind.BigIntLiteral */ || |
| 88745 | expr.kind === 219 /* SyntaxKind.PrefixUnaryExpression */ && expr.operator === 40 /* SyntaxKind.MinusToken */ && |
no outgoing calls
no test coverage detected