1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:47:34 +00:00

LibWeb: Move Token and Tokenizer into Parser namespace

This commit is contained in:
Sam Atkins 2022-04-12 15:10:08 +01:00 committed by Andreas Kling
parent 7272997b1b
commit bf786d66b1
8 changed files with 52 additions and 51 deletions

View file

@ -12,7 +12,7 @@
#include <AK/Utf8View.h>
#include <LibWeb/CSS/Number.h>
namespace Web::CSS {
namespace Web::CSS::Parser {
class Token {
friend class Tokenizer;