stylex_structures/property_specificity.rs
1use stylex_macros::stylex_unimplemented;
2
3use crate::{order::Order, order_pair::OrderPair};
4
5#[allow(dead_code)]
6pub struct PropertySpecificity {}
7
8impl Order for PropertySpecificity {
9 fn get_expansion_fn(
10 _property: &str,
11 ) -> Option<fn(Option<String>) -> Result<Vec<OrderPair>, String>> {
12 stylex_unimplemented!("PropertySpecificity")
13 }
14}