Return the current look ahead token and scan the next one */
| 443 | Return the current look ahead token and scan the next one |
| 444 | */ |
| 445 | Token shift() |
| 446 | { |
| 447 | DBUG_ASSERT(!is_error()); |
| 448 | const Token res= m_look_ahead_token; |
| 449 | m_look_ahead_token= get_token(m_cs); |
| 450 | return res; |
| 451 | } |
| 452 | |
| 453 | THD *thd() const { return m_thd; } |
| 454 | public: |
no test coverage detected