Skip to content

Commit

Permalink
LibWeb/CSS: Move rule-conversion code into its own file
Browse files Browse the repository at this point in the history
This is an attempt to bring the size of Parser.cpp down. No code
changes, just moves and some explicit template instantiations now that
we're using them from a different file.
  • Loading branch information
AtkinsSJ committed Nov 1, 2024
1 parent 8703ca0 commit b6aee3e
Show file tree
Hide file tree
Showing 5 changed files with 901 additions and 868 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ source_set("Parser") {
"MediaParsing.cpp",
"Parser.cpp",
"ParsingContext.cpp",
"RuleParsing.cpp",
"SelectorParsing.cpp",
"Token.cpp",
"Tokenizer.cpp",
Expand Down
1 change: 1 addition & 0 deletions Userland/Libraries/LibWeb/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ set(SOURCES
CSS/Parser/MediaParsing.cpp
CSS/Parser/Parser.cpp
CSS/Parser/ParsingContext.cpp
CSS/Parser/RuleParsing.cpp
CSS/Parser/SelectorParsing.cpp
CSS/Parser/Token.cpp
CSS/Parser/Tokenizer.cpp
Expand Down
Loading

0 comments on commit b6aee3e

Please sign in to comment.