css 0.0.22

A crate that uses the cssparser and selectors crates to provide a domain model for CSS Stylesheets. Intended to allow effective minification of CSS and CSS transformations such as autoprefixing and removal by other crates
// This file is part of css. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/css/master/COPYRIGHT. No part of predicator, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
// Copyright © 2017 The developers of css. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/css/master/COPYRIGHT.


use super::*;
use super::atRules::namespace::NamespaceUrl;
use super::domain::Atom;
use super::domain::VendorPrefix;
use super::parsers::separators::Comma;
use super::parsers::separators::Separated;
use ::cssparser::BasicParseError;
use ::cssparser::Parser;
use ::cssparser::ParseError;
use ::cssparser::serialize_identifier;
use ::cssparser::serialize_string;
use ::cssparser::ToCss;
use ::cssparser::Token;
use ::selectors::Element;
use ::selectors::NthIndexCache;
use ::selectors::matching::matches_selector;
use ::selectors::matching::MatchingContext;
use ::selectors::matching::MatchingMode;
use ::selectors::matching::QuirksMode;
use ::selectors::parser::AncestorHashes;
use ::selectors::parser::Component;
use ::selectors::parser::Combinator;
use ::selectors::parser::Selector;
use ::selectors::parser::SelectorImpl;
use ::selectors::parser::SelectorMethods;
use ::selectors::visitor::SelectorVisitor;
use ::std::collections::HashMap;
use ::std::fmt;


include!("DeduplicatedSelectors.rs");
include!("LanguageRange.rs");
include!("LanguageRanges.rs");
include!("matches.rs");
include!("NonTreeStructuralPseudoClass.rs");
include!("OurSelector.rs");
include!("OurSelectorExt.rs");
include!("OurSelectorImpl.rs");
include!("PseudoElement.rs");
include!("SystemMetric.rs");
include!("TextDirectionality.rs");
include!("TreeHover.rs");
include!("VendorPrefixablePseudoClassName.rs");
include!("VendorPrefixablePseudoElementName.rs");