aboutsummaryrefslogtreecommitdiffstats
path: root/components/selectors/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/selectors/lib.rs')
-rw-r--r--components/selectors/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/selectors/lib.rs b/components/selectors/lib.rs
index 2184dfc64e7..0805a53041f 100644
--- a/components/selectors/lib.rs
+++ b/components/selectors/lib.rs
@@ -24,6 +24,7 @@ pub mod bloom;
mod builder;
pub mod context;
pub mod matching;
+mod nth_index_cache;
pub mod parser;
#[cfg(test)] mod size_of_tests;
#[cfg(any(test, feature = "gecko_like_types"))] pub mod gecko_like_types;
@@ -31,5 +32,6 @@ pub mod sink;
mod tree;
pub mod visitor;
+pub use nth_index_cache::NthIndexCache;
pub use parser::{SelectorImpl, Parser, SelectorList};
-pub use tree::Element;
+pub use tree::{Element, OpaqueElement};