| 253 | } |
| 254 | |
| 255 | int nextToken() |
| 256 | { |
| 257 | _lastToken = _curToken; |
| 258 | _curToken = _lexer.getToken(); |
| 259 | while (_curToken == CMakeLexer::TOK_EOL) |
| 260 | { |
| 261 | // Try to preserve lines in output to allow correct line number referencing by doxygen. |
| 262 | _os << std::endl; |
| 263 | _curToken = _lexer.getToken(); |
| 264 | } |
| 265 | return _curToken; |
| 266 | } |
| 267 | |
| 268 | void handleMacro() |
| 269 | { |