1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

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
parent 8671d79ba4
commit 9c14504bbb
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);
}