| 1630 | } |
| 1631 | |
| 1632 | std::string Token::expressionString() const |
| 1633 | { |
| 1634 | const auto tokens = findExpressionStartEndTokens(); |
| 1635 | return stringFromTokenRange(tokens.first, tokens.second); |
| 1636 | } |
| 1637 | |
| 1638 | static void astStringXml(const Token *tok, nonneg int indent, std::ostream &out) |
| 1639 | { |
no test coverage detected