LibWeb: Rename CSS::Token::TokenType -> Type

This commit is contained in:
Sam Atkins 2021-07-09 20:54:06 +01:00 committed by Andreas Kling
commit 9c14504bbb
Notes: sideshowbarker 2024-07-18 09:14:12 +09:00
6 changed files with 124 additions and 124 deletions

View file

@ -45,7 +45,7 @@ public:
return *m_function;
}
bool is(Token::TokenType type) const
bool is(Token::Type type) const
{
return m_type == ComponentType::Token && m_token.is(type);
}