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

LibWeb: Change HTMLTokenizer.{cpp,h} to east const style

This commit is contained in:
Max Wipfli 2021-07-12 12:44:21 +02:00 committed by Andreas Kling
parent 300823c314
commit 125982943a
2 changed files with 8 additions and 8 deletions

View file

@ -100,7 +100,7 @@ namespace Web::HTML {
class HTMLTokenizer {
public:
explicit HTMLTokenizer(const StringView& input, const String& encoding);
explicit HTMLTokenizer(StringView const& input, String const& encoding);
enum class State {
#define __ENUMERATE_TOKENIZER_STATE(state) state,
@ -125,12 +125,12 @@ private:
void skip(size_t count);
Optional<u32> next_code_point();
Optional<u32> peek_code_point(size_t offset) const;
bool consume_next_if_match(const StringView&, CaseSensitivity = CaseSensitivity::CaseSensitive);
bool consume_next_if_match(StringView const&, CaseSensitivity = CaseSensitivity::CaseSensitive);
void create_new_token(HTMLToken::Type);
bool current_end_tag_token_is_appropriate() const;
String consume_current_builder();
static const char* state_name(State state)
static char const* state_name(State state)
{
switch (state) {
#define __ENUMERATE_TOKENIZER_STATE(state) \
@ -148,7 +148,7 @@ private:
bool consumed_as_part_of_an_attribute() const;
void restore_to(const Utf8CodePointIterator& new_iterator);
void restore_to(Utf8CodePointIterator const& new_iterator);
HTMLToken::Position nth_last_position(size_t n = 0);
State m_state { State::Data };