Add size_of tests for geckolib selectors

This commit is contained in:
Simon Sapin 2017-05-15 16:54:18 +02:00
parent cf2ae86373
commit fd357f08cf
8 changed files with 124 additions and 2 deletions

View file

@ -7,12 +7,15 @@
#[macro_use] extern crate matches;
extern crate fnv;
extern crate precomputed_hash;
#[cfg(test)] #[macro_use] extern crate size_of_test;
extern crate smallvec;
pub mod arcslice;
pub mod bloom;
pub mod matching;
pub mod parser;
#[cfg(test)] mod size_of_tests;
#[cfg(any(test, feature = "gecko_like_types"))] pub mod gecko_like_types;
mod tree;
pub mod visitor;