| 617 | } |
| 618 | |
| 619 | bool Identifier::isReserved() const |
| 620 | { |
| 621 | const auto str = identifier().str(); |
| 622 | constexpr QLatin1Char underscore{'_'}; |
| 623 | return str.size() >= 2 && str[0] == underscore && (str[1] == underscore || str[1].isUpper()); |
| 624 | } |
| 625 | |
| 626 | bool Identifier::operator==(const Identifier& rhs) const |
| 627 | { |
no test coverage detected