| 41 | static QString unescapeValue(const QString& value); |
| 42 | |
| 43 | KDevelop::RangeInRevision range() const |
| 44 | { return KDevelop::RangeInRevision(line-1, column-1, line-1, column+value.length()-1); } |
| 45 | |
| 46 | bool isValid() const { return quoted || !value.isEmpty(); } |
| 47 |