diff options
author | Max Wipfli <mail@maxwipfli.ch> | 2021-07-12 12:46:54 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-14 23:03:36 +0200 |
commit | 35f32ac170b100bc9e5a78d063e61ee92d8b9291 (patch) | |
tree | c7e626545d1a82047c6a4d5de33b5d356fc2660d /Userland/Libraries | |
parent | 125982943afa452720bfdcd63b8ade8d3f887c19 (diff) | |
download | serenity-35f32ac170b100bc9e5a78d063e61ee92d8b9291.zip |
LibWeb: Change HTMLToken.h to east const style
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/Parser/HTMLToken.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/Parser/HTMLToken.h b/Userland/Libraries/LibWeb/HTML/Parser/HTMLToken.h index 0b0366ef94..232ebae1a8 100644 --- a/Userland/Libraries/LibWeb/HTML/Parser/HTMLToken.h +++ b/Userland/Libraries/LibWeb/HTML/Parser/HTMLToken.h @@ -40,7 +40,7 @@ public: return token; } - static HTMLToken make_start_tag(const FlyString& tag_name) + static HTMLToken make_start_tag(FlyString const& tag_name) { HTMLToken token; token.m_type = Type::StartTag; @@ -104,7 +104,7 @@ public: m_tag.self_closing_acknowledged = true; } - StringView attribute(const FlyString& attribute_name) + StringView attribute(FlyString const& attribute_name) { VERIFY(is_start_tag() || is_end_tag()); for (auto& attribute : m_tag.attributes) { @@ -114,19 +114,19 @@ public: return {}; } - bool has_attribute(const FlyString& attribute_name) + bool has_attribute(FlyString const& attribute_name) { return !attribute(attribute_name).is_null(); } - void adjust_tag_name(const FlyString& old_name, const FlyString& new_name) + void adjust_tag_name(FlyString const& old_name, FlyString const& new_name) { VERIFY(is_start_tag() || is_end_tag()); if (old_name == m_tag.tag_name) m_tag.tag_name = new_name; } - void adjust_attribute_name(const FlyString& old_name, const FlyString& new_name) + void adjust_attribute_name(FlyString const& old_name, FlyString const& new_name) { VERIFY(is_start_tag() || is_end_tag()); for (auto& attribute : m_tag.attributes) { @@ -136,7 +136,7 @@ public: } } - void adjust_foreign_attribute(const FlyString& old_name, const FlyString& prefix, const FlyString& local_name, const FlyString& namespace_) + void adjust_foreign_attribute(FlyString const& old_name, FlyString const& prefix, FlyString const& local_name, FlyString const& namespace_) { VERIFY(is_start_tag() || is_end_tag()); for (auto& attribute : m_tag.attributes) { @@ -158,10 +158,10 @@ public: String to_string() const; - const auto& start_position() const { return m_start_position; } - const auto& end_position() const { return m_end_position; } + auto const& start_position() const { return m_start_position; } + auto const& end_position() const { return m_end_position; } - const auto& attributes() const + auto const& attributes() const { VERIFY(is_start_tag() || is_end_tag()); return m_tag.attributes; |