Implement tokens() as a wrapper for convenience when using the TokenList
| 604 | TokenList list; |
| 605 | // Implement tokens() as a wrapper for convenience when using the TokenList |
| 606 | const Token* tokens() const { |
| 607 | return list.front(); |
| 608 | } |
| 609 | |
| 610 | Token* tokens() { |
| 611 | return list.front(); |
no test coverage detected