csskit_derives 0.0.19

Derive macros for CSS parsing, visiting, and AST operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod test_parse;
mod test_peek;
mod test_to_cursors;

#[macro_export]
macro_rules! to_deriveinput {
	( $($tt:tt)+ ) => {
		::syn::parse2::<::syn::DeriveInput>(::quote::quote!{ $($tt)+ }).unwrap()
	}
}
#[cfg(test)]
pub(crate) use to_deriveinput;