* @return token in given index, related to this token. * For example index 1 would return next token, and 2 * would return next from that one. */
| 250 | * would return next from that one. |
| 251 | */ |
| 252 | const Token *tokAt(int index) const |
| 253 | { |
| 254 | return tokAtImpl(this, index); |
| 255 | } |
| 256 | Token *tokAt(int index) |
| 257 | { |
| 258 | return tokAtImpl(this, index); |
no test coverage detected