| 769 | } |
| 770 | |
| 771 | GluaParserToken GluaTokenParser::current() const |
| 772 | { |
| 773 | if (eof()) |
| 774 | return eof_token(); |
| 775 | return *std::next(_tokens.begin(), _pos); |
| 776 | } |
| 777 | |
| 778 | GluaParserToken GluaTokenParser::lookahead() const |
| 779 | { |
no test coverage detected