| 613 | } |
| 614 | |
| 615 | bool LuaLexer::CurrentIsNewLine() { |
| 616 | int ch = _reader.GetCurrentChar(); |
| 617 | return ch == '\n' || ch == '\r'; |
| 618 | } |
| 619 | |
| 620 | bool LuaLexer::IsReserved(std::string_view text) { |
| 621 | return LuaReserved.find(text) != LuaReserved.end(); |
nothing calls this directly
no test coverage detected