Skip to content

Commit

Permalink
[compiler] Remove redundant code
Browse files Browse the repository at this point in the history
  • Loading branch information
nvkokkalis committed Apr 24, 2024
1 parent 4f81a95 commit a0dbdff
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -776,10 +776,6 @@ void parseString()
}
if (La(next) == 10 || La(next) == 13)
{
if (La(next) == 10 && La(next + 1) == 13)
next += 2;
else
next++;
while (La(1) != 10 && La(1) != 13)
parseSkip();
if (La(1) == 13)
Expand Down

0 comments on commit a0dbdff

Please sign in to comment.