get next token from lexer
| 7463 | |
| 7464 | /// get next token from lexer |
| 7465 | token_type get_token() |
| 7466 | { |
| 7467 | return last_token = m_lexer.scan(); |
| 7468 | } |
| 7469 | |
| 7470 | std::string exception_message(const token_type expected, const std::string& context) |
| 7471 | { |