1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

LibWeb: VERIFY an empty builder when emitting tokens in HTMLTokenizer

This commit is contained in:
Max Wipfli 2021-07-15 00:34:54 +02:00 committed by Andreas Kling
parent 1a3e1bff7b
commit af0b483123

View file

@ -59,6 +59,7 @@ namespace Web::HTML {
#define SWITCH_TO_AND_EMIT_CURRENT_TOKEN(new_state) \ #define SWITCH_TO_AND_EMIT_CURRENT_TOKEN(new_state) \
do { \ do { \
VERIFY(m_current_builder.is_empty()); \
will_switch_to(State::new_state); \ will_switch_to(State::new_state); \
m_state = State::new_state; \ m_state = State::new_state; \
will_emit(m_current_token); \ will_emit(m_current_token); \
@ -135,6 +136,7 @@ namespace Web::HTML {
#define EMIT_CURRENT_TOKEN \ #define EMIT_CURRENT_TOKEN \
do { \ do { \
VERIFY(m_current_builder.is_empty()); \
will_emit(m_current_token); \ will_emit(m_current_token); \
m_queued_tokens.enqueue(move(m_current_token)); \ m_queued_tokens.enqueue(move(m_current_token)); \
return m_queued_tokens.dequeue(); \ return m_queued_tokens.dequeue(); \