| 187 | } |
| 188 | |
| 189 | inline static std::string getCharLiteral(const std::string &str) |
| 190 | { |
| 191 | if (isCharLiteral(str)) |
| 192 | return getStringCharLiteral(str, '\''); |
| 193 | return ""; |
| 194 | } |
| 195 | |
| 196 | inline static const char *getOrdinalText(int i) |
| 197 | { |
no test coverage detected