Return the current look ahead token and scan the next one */
| 225 | Return the current look ahead token and scan the next one |
| 226 | */ |
| 227 | Token shift() |
| 228 | { |
| 229 | DBUG_ASSERT(!is_error()); |
| 230 | const Token res= m_look_ahead_token; |
| 231 | m_look_ahead_token= get_token(m_cs); |
| 232 | return res; |
| 233 | } |
| 234 | |
| 235 | public: |
| 236 | /* |
nothing calls this directly
no test coverage detected