| 51 | }; |
| 52 | |
| 53 | bool isNumeric(const Type& type) { |
| 54 | auto kind = type.getKind(); |
| 55 | return kind == BOOLEAN || kind == BYTE || kind == SHORT || kind == INT || kind == LONG || |
| 56 | kind == FLOAT || kind == DOUBLE; |
| 57 | } |
| 58 | |
| 59 | bool isStringVariant(const Type& type) { |
| 60 | auto kind = type.getKind(); |
no test coverage detected