get first token of list */
| 119 | |
| 120 | /** get first token of list */ |
| 121 | const Token *front() const { |
| 122 | return mTokensFrontBack->front; |
| 123 | } |
| 124 | // NOLINTNEXTLINE(readability-make-member-function-const) - do not allow usage of mutable pointer from const object |
| 125 | Token *front() { |
| 126 | return mTokensFrontBack->front; |
no outgoing calls
no test coverage detected