(node *Node)
| 329 | } |
| 330 | |
| 331 | func IsStringOrNumericLiteralLike(node *Node) bool { |
| 332 | return IsStringLiteralLike(node) || IsNumericLiteral(node) |
| 333 | } |
| 334 | |
| 335 | func IsSignedNumericLiteral(node *Node) bool { |
| 336 | if node.Kind == KindPrefixUnaryExpression { |
no test coverage detected