1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:47:34 +00:00

LibCpp: Support Lexing escaped newlines

This commit is contained in:
Itamar 2021-05-07 15:44:34 +03:00 committed by Andreas Kling
parent 5c19a48b95
commit 1bd6705636

View file

@ -757,6 +757,13 @@ Vector<Token> Lexer::lex()
commit_token(Token::Type::Identifier);
continue;
}
if (ch == '\\' && peek(1) == '\n') {
consume();
consume();
continue;
}
dbgln("Unimplemented token character: {}", ch);
emit_single_char_token(Token::Type::Unknown);
}