LibWeb: Allow peeking more than 1 token ahead in CSS Parser

This commit is contained in:
Sam Atkins 2021-07-28 16:27:45 +01:00 committed by Andreas Kling
commit d6668dbc56
Notes: sideshowbarker 2024-07-18 07:42:19 +09:00
2 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,7 @@ public:
bool has_next_token();
T const& next_token();
T const& peek_token();
T const& peek_token(int offset = 0);
T const& current_token();
void reconsume_current_input_token();