diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-11-08 23:07:40 +0000 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-11-10 21:10:34 +0100 |
commit | 667457a16c64580e0e5545cc7797a4bb1ba25aa6 (patch) | |
tree | a6b8b47d5695c33e9def8457a1e01b08cb03b5dd /components/style/lib.rs | |
parent | b7cefa5814cead7354abab4fed911827d964a5f2 (diff) | |
download | servo-667457a16c64580e0e5545cc7797a4bb1ba25aa6.tar.gz servo-667457a16c64580e0e5545cc7797a4bb1ba25aa6.zip |
style: Split up push_applicable_declarations.
Introduce RuleCollector, which contains all the state we need during the
cascade, and allows to reuse a bit of code.
Differential Revision: https://phabricator.services.mozilla.com/D11233
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r-- | components/style/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs index 6694f776ab8..77927826523 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -143,6 +143,7 @@ pub mod media_queries; pub mod parallel; pub mod parser; pub mod rule_cache; +pub mod rule_collector; pub mod rule_tree; pub mod scoped_tls; pub mod selector_map; |