1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:57:45 +00:00

LibCpp: Fix lexing & parsing of non-terminated strings

This commit is contained in:
Itamar 2021-02-10 22:15:38 +02:00 committed by Andreas Kling
parent 2da5ecba41
commit 8ace2cfa18
3 changed files with 25 additions and 9 deletions

View file

@ -114,6 +114,7 @@ private:
Token peek() const;
Optional<Token> peek(Token::Type) const;
Position position() const;
StringView text_of_range(Position start, Position end) const;
void save_state();
void load_state();