cppcheck-suppress unusedFunction - used for debugging
| 1260 | |
| 1261 | // cppcheck-suppress unusedFunction - used for debugging |
| 1262 | void Token::printLines(std::ostream& out, int lines) const |
| 1263 | { |
| 1264 | const Token *end = this; |
| 1265 | while (end && end->linenr() < lines + linenr()) |
| 1266 | end = end->next(); |
| 1267 | out << stringifyList(stringifyOptions::forDebugExprId(), nullptr, end) << std::endl; |
| 1268 | } |
| 1269 | |
| 1270 | std::string Token::stringify(const stringifyOptions& options) const |
| 1271 | { |