mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 16:55:09 +00:00
LibGUI: Fix CppLexer assertion on incomplete #include statements
Thanks to @NotKyon for reporting this bug with a solid analysis. Fixes #1488.
This commit is contained in:
parent
a502ba73dc
commit
37af1d74cc
1 changed files with 5 additions and 5 deletions
|
@ -363,16 +363,16 @@ Vector<CppToken> CppLexer::lex()
|
||||||
begin_token();
|
begin_token();
|
||||||
if (peek() == '<' || peek() == '"') {
|
if (peek() == '<' || peek() == '"') {
|
||||||
char closing = consume() == '<' ? '>' : '"';
|
char closing = consume() == '<' ? '>' : '"';
|
||||||
while (peek() != closing && peek() != '\n')
|
while (peek() && peek() != closing && peek() != '\n')
|
||||||
consume();
|
consume();
|
||||||
|
|
||||||
if (consume() == '\n') {
|
if (peek() && consume() == '\n') {
|
||||||
commit_token(CppToken::Type::IncludePath);
|
commit_token(CppToken::Type::IncludePath);
|
||||||
continue;
|
continue;
|
||||||
} else {
|
|
||||||
commit_token(CppToken::Type::IncludePath);
|
|
||||||
begin_token();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
commit_token(CppToken::Type::IncludePath);
|
||||||
|
begin_token();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue