* @brief Test whether the string is a real string. * * A real string is a string that should be quoted. A simple identifier * is a string that should not be quoted. * * @return True if the string is a real string, false otherwise. */
| 226 | * @return True if the string is a real string, false otherwise. |
| 227 | */ |
| 228 | bool isRealString() const |
| 229 | { |
| 230 | return isString; |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * @brief Test whether the string is a forced identifier. |
no outgoing calls
no test coverage detected