LibWeb: Increase clarity with CSS token debug logging

Had to adjust some places that were using Token.to_string() for
non-debug-logging purposes. Changed its name to to_debug_string()
to make the usage clearer.
This commit is contained in:
Sam Atkins 2021-07-07 21:29:24 +01:00 committed by Andreas Kling
commit fabc09a593
Notes: sideshowbarker 2024-07-18 09:13:22 +09:00
5 changed files with 29 additions and 27 deletions

View file

@ -52,7 +52,7 @@ public:
Token const& token() const { return m_token; }
operator Token() const { return m_token; }
String to_string() const;
String to_debug_string() const;
private:
ComponentType m_type;