mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-08 12:22:34 +00:00
Bug 1489667 - Format component of style_derive. r=emilio
This cherry-picks servo/servo#21635
This commit is contained in:
parent
f1afe5ceec
commit
0f1a2fb4bc
@ -31,7 +31,7 @@ pub fn derive(mut input: DeriveInput) -> Tokens {
|
||||
Err(()) => {
|
||||
append_error_clause = true;
|
||||
return body;
|
||||
}
|
||||
},
|
||||
};
|
||||
quote! { #body #arm }
|
||||
});
|
||||
|
@ -11,23 +11,21 @@ use syn::{TypeParam, TypeParen, TypePath, TypeSlice, TypeTuple};
|
||||
use syn::{Variant, WherePredicate};
|
||||
use synstructure::{self, BindingInfo, BindStyle, VariantAst, VariantInfo};
|
||||
|
||||
pub fn add_predicate(
|
||||
where_clause: &mut Option<syn::WhereClause>,
|
||||
pred: WherePredicate,
|
||||
) {
|
||||
where_clause.get_or_insert(parse_quote!(where)).predicates.push(pred);
|
||||
pub fn add_predicate(where_clause: &mut Option<syn::WhereClause>, pred: WherePredicate) {
|
||||
where_clause
|
||||
.get_or_insert(parse_quote!(where))
|
||||
.predicates
|
||||
.push(pred);
|
||||
}
|
||||
|
||||
pub fn fmap_match<F>(
|
||||
input: &DeriveInput,
|
||||
bind_style: BindStyle,
|
||||
mut f: F,
|
||||
) -> Tokens
|
||||
pub fn fmap_match<F>(input: &DeriveInput, bind_style: BindStyle, mut f: F) -> Tokens
|
||||
where
|
||||
F: FnMut(BindingInfo) -> Tokens,
|
||||
{
|
||||
let mut s = synstructure::Structure::new(input);
|
||||
s.variants_mut().iter_mut().for_each(|v| { v.bind_with(|_| bind_style); });
|
||||
s.variants_mut().iter_mut().for_each(|v| {
|
||||
v.bind_with(|_| bind_style);
|
||||
});
|
||||
s.each_variant(|variant| {
|
||||
let (mapped, mapped_fields) = value(variant, "mapped");
|
||||
let fields_pairs = variant.bindings().into_iter().zip(mapped_fields);
|
||||
@ -41,31 +39,30 @@ where
|
||||
})
|
||||
}
|
||||
|
||||
pub fn fmap_trait_output(
|
||||
input: &DeriveInput,
|
||||
trait_path: &Path,
|
||||
trait_output: Ident,
|
||||
) -> Path {
|
||||
pub fn fmap_trait_output(input: &DeriveInput, trait_path: &Path, trait_output: Ident) -> Path {
|
||||
let segment = PathSegment {
|
||||
ident: input.ident.clone(),
|
||||
arguments: PathArguments::AngleBracketed(AngleBracketedGenericArguments {
|
||||
args: input.generics.params.iter().map(|arg| {
|
||||
match arg {
|
||||
&GenericParam::Lifetime(ref data) => GenericArgument::Lifetime(data.lifetime.clone()),
|
||||
args: input
|
||||
.generics
|
||||
.params
|
||||
.iter()
|
||||
.map(|arg| match arg {
|
||||
&GenericParam::Lifetime(ref data) => {
|
||||
GenericArgument::Lifetime(data.lifetime.clone())
|
||||
},
|
||||
&GenericParam::Type(ref data) => {
|
||||
let ident = data.ident;
|
||||
GenericArgument::Type(
|
||||
parse_quote!(<#ident as ::#trait_path>::#trait_output),
|
||||
)
|
||||
},
|
||||
ref arg => panic!("arguments {:?} cannot be mapped yet", arg)
|
||||
}
|
||||
}).collect(),
|
||||
ref arg => panic!("arguments {:?} cannot be mapped yet", arg),
|
||||
}).collect(),
|
||||
colon2_token: Default::default(),
|
||||
gt_token: Default::default(),
|
||||
lt_token: Default::default(),
|
||||
|
||||
})
|
||||
}),
|
||||
};
|
||||
segment.into()
|
||||
}
|
||||
@ -75,44 +72,55 @@ where
|
||||
F: FnMut(&Ident) -> Type,
|
||||
{
|
||||
match *ty {
|
||||
Type::Slice(ref inner) => {
|
||||
Type::from(TypeSlice { elem: Box::new(map_type_params(&inner.elem, params, f)), ..inner.clone() })
|
||||
},
|
||||
Type::Array(ref inner) => { //ref ty, ref expr) => {
|
||||
Type::from(TypeArray { elem: Box::new(map_type_params(&inner.elem, params, f)), ..inner.clone() })
|
||||
Type::Slice(ref inner) => Type::from(TypeSlice {
|
||||
elem: Box::new(map_type_params(&inner.elem, params, f)),
|
||||
..inner.clone()
|
||||
}),
|
||||
Type::Array(ref inner) => {
|
||||
//ref ty, ref expr) => {
|
||||
Type::from(TypeArray {
|
||||
elem: Box::new(map_type_params(&inner.elem, params, f)),
|
||||
..inner.clone()
|
||||
})
|
||||
},
|
||||
ref ty @ Type::Never(_) => ty.clone(),
|
||||
Type::Tuple(ref inner) => {
|
||||
Type::from(
|
||||
TypeTuple {
|
||||
elems: inner.elems.iter().map(|ty| map_type_params(&ty, params, f)).collect(),
|
||||
..inner.clone()
|
||||
}
|
||||
)
|
||||
},
|
||||
Type::Path(TypePath { qself: None, ref path }) => {
|
||||
Type::Tuple(ref inner) => Type::from(TypeTuple {
|
||||
elems: inner
|
||||
.elems
|
||||
.iter()
|
||||
.map(|ty| map_type_params(&ty, params, f))
|
||||
.collect(),
|
||||
..inner.clone()
|
||||
}),
|
||||
Type::Path(TypePath {
|
||||
qself: None,
|
||||
ref path,
|
||||
}) => {
|
||||
if let Some(ident) = path_to_ident(path) {
|
||||
if params.iter().any(|param| param.ident == ident) {
|
||||
return f(ident);
|
||||
}
|
||||
}
|
||||
Type::from(TypePath { qself: None, path: map_type_params_in_path(path, params, f) })
|
||||
}
|
||||
Type::Path(TypePath { ref qself, ref path }) => {
|
||||
Type::from(TypePath {
|
||||
qself: qself.as_ref().map(|qself| {
|
||||
QSelf {
|
||||
ty: Box::new(map_type_params(&qself.ty, params, f)),
|
||||
position: qself.position,
|
||||
..qself.clone()
|
||||
}
|
||||
}),
|
||||
qself: None,
|
||||
path: map_type_params_in_path(path, params, f),
|
||||
})
|
||||
},
|
||||
Type::Paren(ref inner) => {
|
||||
Type::from(TypeParen { elem: Box::new(map_type_params(&inner.elem, params, f)), ..inner.clone() })
|
||||
},
|
||||
Type::Path(TypePath {
|
||||
ref qself,
|
||||
ref path,
|
||||
}) => Type::from(TypePath {
|
||||
qself: qself.as_ref().map(|qself| QSelf {
|
||||
ty: Box::new(map_type_params(&qself.ty, params, f)),
|
||||
position: qself.position,
|
||||
..qself.clone()
|
||||
}),
|
||||
path: map_type_params_in_path(path, params, f),
|
||||
}),
|
||||
Type::Paren(ref inner) => Type::from(TypeParen {
|
||||
elem: Box::new(map_type_params(&inner.elem, params, f)),
|
||||
..inner.clone()
|
||||
}),
|
||||
ref ty => panic!("type {:?} cannot be mapped yet", ty),
|
||||
}
|
||||
}
|
||||
@ -123,41 +131,48 @@ where
|
||||
{
|
||||
Path {
|
||||
leading_colon: path.leading_colon,
|
||||
segments: path.segments.iter().map(|segment| {
|
||||
PathSegment {
|
||||
segments: path
|
||||
.segments
|
||||
.iter()
|
||||
.map(|segment| PathSegment {
|
||||
ident: segment.ident.clone(),
|
||||
arguments: match segment.arguments {
|
||||
PathArguments::AngleBracketed(ref data) => {
|
||||
PathArguments::AngleBracketed(AngleBracketedGenericArguments {
|
||||
args: data.args.iter().map(|arg| {
|
||||
match arg {
|
||||
args: data
|
||||
.args
|
||||
.iter()
|
||||
.map(|arg| match arg {
|
||||
ty @ &GenericArgument::Lifetime(_) => ty.clone(),
|
||||
&GenericArgument::Type(ref data) => {
|
||||
GenericArgument::Type(map_type_params(data, params, f))
|
||||
},
|
||||
&GenericArgument::Binding(ref data) => GenericArgument::Binding(Binding {
|
||||
ty: map_type_params(&data.ty, params, f),
|
||||
..data.clone()
|
||||
}),
|
||||
ref arg => panic!("arguments {:?} cannot be mapped yet", arg)
|
||||
}
|
||||
}).collect(),
|
||||
&GenericArgument::Binding(ref data) => {
|
||||
GenericArgument::Binding(Binding {
|
||||
ty: map_type_params(&data.ty, params, f),
|
||||
..data.clone()
|
||||
})
|
||||
},
|
||||
ref arg => panic!("arguments {:?} cannot be mapped yet", arg),
|
||||
}).collect(),
|
||||
..data.clone()
|
||||
})
|
||||
},
|
||||
ref arg @ PathArguments::None => arg.clone(),
|
||||
ref parameters => {
|
||||
panic!("parameters {:?} cannot be mapped yet", parameters)
|
||||
}
|
||||
ref parameters => panic!("parameters {:?} cannot be mapped yet", parameters),
|
||||
},
|
||||
}
|
||||
}).collect(),
|
||||
}).collect(),
|
||||
}
|
||||
}
|
||||
|
||||
fn path_to_ident(path: &Path) -> Option<&Ident> {
|
||||
match *path {
|
||||
Path { leading_colon: None, ref segments } if segments.len() == 1 => {
|
||||
Path {
|
||||
leading_colon: None,
|
||||
ref segments,
|
||||
}
|
||||
if segments.len() == 1 =>
|
||||
{
|
||||
if segments[0].arguments.is_empty() {
|
||||
Some(&segments[0].ident)
|
||||
} else {
|
||||
@ -203,7 +218,7 @@ where
|
||||
|
||||
pub fn parse_variant_attrs<A>(variant: &Variant) -> A
|
||||
where
|
||||
A: FromVariant
|
||||
A: FromVariant,
|
||||
{
|
||||
match A::from_variant(variant) {
|
||||
Ok(attrs) => attrs,
|
||||
@ -211,23 +226,20 @@ where
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
pub fn ref_pattern<'a>(
|
||||
variant: &'a VariantInfo,
|
||||
prefix: &str,
|
||||
) -> (Tokens, Vec<BindingInfo<'a>>) {
|
||||
pub fn ref_pattern<'a>(variant: &'a VariantInfo, prefix: &str) -> (Tokens, Vec<BindingInfo<'a>>) {
|
||||
let mut v = variant.clone();
|
||||
v.bind_with(|_| BindStyle::Ref);
|
||||
v.bindings_mut().iter_mut().for_each(|b| { b.binding = Ident::from(format!("{}_{}", b.binding, prefix)) });
|
||||
v.bindings_mut()
|
||||
.iter_mut()
|
||||
.for_each(|b| b.binding = Ident::from(format!("{}_{}", b.binding, prefix)));
|
||||
(v.pat(), v.bindings().iter().cloned().collect())
|
||||
}
|
||||
|
||||
pub fn value<'a>(
|
||||
variant: &'a VariantInfo,
|
||||
prefix: &str,
|
||||
) -> (Tokens, Vec<BindingInfo<'a>>) {
|
||||
pub fn value<'a>(variant: &'a VariantInfo, prefix: &str) -> (Tokens, Vec<BindingInfo<'a>>) {
|
||||
let mut v = variant.clone();
|
||||
v.bindings_mut().iter_mut().for_each(|b| { b.binding = Ident::from(format!("{}_{}", b.binding, prefix)) });
|
||||
v.bindings_mut()
|
||||
.iter_mut()
|
||||
.for_each(|b| b.binding = Ident::from(format!("{}_{}", b.binding, prefix)));
|
||||
v.bind_with(|_| BindStyle::Move);
|
||||
(v.pat(), v.bindings().iter().cloned().collect())
|
||||
}
|
||||
|
@ -4,10 +4,13 @@
|
||||
|
||||
#![recursion_limit = "128"]
|
||||
|
||||
#[macro_use] extern crate darling;
|
||||
#[macro_use]
|
||||
extern crate darling;
|
||||
extern crate proc_macro;
|
||||
#[macro_use] extern crate quote;
|
||||
#[macro_use] extern crate syn;
|
||||
#[macro_use]
|
||||
extern crate quote;
|
||||
#[macro_use]
|
||||
extern crate syn;
|
||||
extern crate synstructure;
|
||||
|
||||
use proc_macro::TokenStream;
|
||||
|
@ -27,23 +27,23 @@ pub fn derive(input: DeriveInput) -> Tokens {
|
||||
"Parse is only supported for single-variant enums for now"
|
||||
);
|
||||
|
||||
let css_variant_attrs =
|
||||
cg::parse_variant_attrs_from_ast::<CssVariantAttrs>(&variant.ast());
|
||||
let parse_attrs =
|
||||
cg::parse_variant_attrs_from_ast::<ParseVariantAttrs>(&variant.ast());
|
||||
let css_variant_attrs = cg::parse_variant_attrs_from_ast::<CssVariantAttrs>(&variant.ast());
|
||||
let parse_attrs = cg::parse_variant_attrs_from_ast::<ParseVariantAttrs>(&variant.ast());
|
||||
if css_variant_attrs.skip {
|
||||
return match_body;
|
||||
}
|
||||
|
||||
let identifier = cg::to_css_identifier(
|
||||
&css_variant_attrs.keyword.unwrap_or(variant.ast().ident.as_ref().into()),
|
||||
&css_variant_attrs
|
||||
.keyword
|
||||
.unwrap_or(variant.ast().ident.as_ref().into()),
|
||||
);
|
||||
let ident = &variant.ast().ident;
|
||||
|
||||
saw_condition |= parse_attrs.condition.is_some();
|
||||
let condition = match parse_attrs.condition {
|
||||
Some(ref p) => quote! { if #p(context) },
|
||||
None => quote! { },
|
||||
None => quote!{},
|
||||
};
|
||||
|
||||
let mut body = quote! {
|
||||
@ -87,7 +87,6 @@ pub fn derive(input: DeriveInput) -> Tokens {
|
||||
quote! { Self::parse(input) }
|
||||
};
|
||||
|
||||
|
||||
let parse_trait_impl = quote! {
|
||||
impl ::parser::Parse for #name {
|
||||
#[inline]
|
||||
|
@ -17,8 +17,8 @@ pub fn derive(mut input: DeriveInput) -> Tokens {
|
||||
let input_name = || cg::to_css_identifier(input_ident.as_ref());
|
||||
if let Some(function) = css_attrs.function {
|
||||
values.push(function.explicit().unwrap_or_else(input_name));
|
||||
// If the whole value is wrapped in a function, value types of
|
||||
// its fields should not be propagated.
|
||||
// If the whole value is wrapped in a function, value types of
|
||||
// its fields should not be propagated.
|
||||
} else {
|
||||
let mut where_clause = input.generics.where_clause.take();
|
||||
for param in input.generics.type_params() {
|
||||
@ -66,12 +66,12 @@ pub fn derive(mut input: DeriveInput) -> Tokens {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
Data::Struct(ref s) => {
|
||||
if !derive_struct_fields(&s.fields, &mut types, &mut values) {
|
||||
values.push(input_name());
|
||||
}
|
||||
}
|
||||
},
|
||||
Data::Union(_) => unreachable!("union is not supported"),
|
||||
}
|
||||
}
|
||||
@ -84,13 +84,17 @@ pub fn derive(mut input: DeriveInput) -> Tokens {
|
||||
}
|
||||
|
||||
let mut types_value = quote!(0);
|
||||
types_value.append_all(types.iter().map(|ty| quote! {
|
||||
| <#ty as ::style_traits::SpecifiedValueInfo>::SUPPORTED_TYPES
|
||||
types_value.append_all(types.iter().map(|ty| {
|
||||
quote! {
|
||||
| <#ty as ::style_traits::SpecifiedValueInfo>::SUPPORTED_TYPES
|
||||
}
|
||||
}));
|
||||
|
||||
let mut nested_collects = quote!();
|
||||
nested_collects.append_all(types.iter().map(|ty| quote! {
|
||||
<#ty as ::style_traits::SpecifiedValueInfo>::collect_completion_keywords(_f);
|
||||
nested_collects.append_all(types.iter().map(|ty| {
|
||||
quote! {
|
||||
<#ty as ::style_traits::SpecifiedValueInfo>::collect_completion_keywords(_f);
|
||||
}
|
||||
}));
|
||||
|
||||
if let Some(ty) = info_attrs.ty {
|
||||
@ -144,7 +148,9 @@ fn derive_struct_fields<'a>(
|
||||
}
|
||||
let css_attrs = cg::parse_field_attrs::<CssFieldAttrs>(field);
|
||||
if css_attrs.represents_keyword {
|
||||
let ident = field.ident.as_ref()
|
||||
let ident = field
|
||||
.ident
|
||||
.as_ref()
|
||||
.expect("only named field should use represents_keyword");
|
||||
values.push(cg::to_css_identifier(ident.as_ref()));
|
||||
return None;
|
||||
|
@ -16,12 +16,16 @@ pub fn derive(mut input: DeriveInput) -> quote::Tokens {
|
||||
);
|
||||
}
|
||||
|
||||
let to_body = cg::fmap_match(&input, BindStyle::Move, |binding| {
|
||||
quote!(::values::animated::ToAnimatedValue::to_animated_value(#binding))
|
||||
});
|
||||
let from_body = cg::fmap_match(&input, BindStyle::Move, |binding| {
|
||||
quote!(::values::animated::ToAnimatedValue::from_animated_value(#binding))
|
||||
});
|
||||
let to_body = cg::fmap_match(
|
||||
&input,
|
||||
BindStyle::Move,
|
||||
|binding| quote!(::values::animated::ToAnimatedValue::to_animated_value(#binding)),
|
||||
);
|
||||
let from_body = cg::fmap_match(
|
||||
&input,
|
||||
BindStyle::Move,
|
||||
|binding| quote!(::values::animated::ToAnimatedValue::from_animated_value(#binding)),
|
||||
);
|
||||
|
||||
input.generics.where_clause = where_clause;
|
||||
let name = &input.ident;
|
||||
|
@ -23,9 +23,11 @@ pub fn derive(mut input: DeriveInput) -> Tokens {
|
||||
if attrs.field_bound {
|
||||
let ty = &binding.ast().ty;
|
||||
|
||||
let output_type = cg::map_type_params(ty, ¶ms, &mut |ident| {
|
||||
parse_quote!(<#ident as ::values::computed::ToComputedValue>::ComputedValue)
|
||||
});
|
||||
let output_type = cg::map_type_params(
|
||||
ty,
|
||||
¶ms,
|
||||
&mut |ident| parse_quote!(<#ident as ::values::computed::ToComputedValue>::ComputedValue),
|
||||
);
|
||||
|
||||
cg::add_predicate(
|
||||
&mut where_clause,
|
||||
@ -71,7 +73,7 @@ pub fn derive(mut input: DeriveInput) -> Tokens {
|
||||
::std::clone::Clone::clone(computed)
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
let computed_value_type = cg::fmap_trait_output(
|
||||
|
@ -19,15 +19,16 @@ pub fn derive(mut input: syn::DeriveInput) -> Tokens {
|
||||
|
||||
let input_attrs = cg::parse_input_attrs::<CssInputAttrs>(&input);
|
||||
if let Data::Enum(_) = input.data {
|
||||
assert!(input_attrs.function.is_none(), "#[css(function)] is not allowed on enums");
|
||||
assert!(
|
||||
input_attrs.function.is_none(),
|
||||
"#[css(function)] is not allowed on enums"
|
||||
);
|
||||
assert!(!input_attrs.comma, "#[css(comma)] is not allowed on enums");
|
||||
}
|
||||
|
||||
let match_body = {
|
||||
let s = Structure::new(&input);
|
||||
s.each_variant(|variant| {
|
||||
derive_variant_arm(variant, &mut where_clause)
|
||||
})
|
||||
s.each_variant(|variant| derive_variant_arm(variant, &mut where_clause))
|
||||
};
|
||||
input.generics.where_clause = where_clause;
|
||||
|
||||
@ -68,10 +69,7 @@ pub fn derive(mut input: syn::DeriveInput) -> Tokens {
|
||||
impls
|
||||
}
|
||||
|
||||
fn derive_variant_arm(
|
||||
variant: &VariantInfo,
|
||||
generics: &mut Option<WhereClause>,
|
||||
) -> Tokens {
|
||||
fn derive_variant_arm(variant: &VariantInfo, generics: &mut Option<WhereClause>) -> Tokens {
|
||||
let bindings = variant.bindings();
|
||||
let identifier = cg::to_css_identifier(variant.ast().ident.as_ref());
|
||||
let ast = variant.ast();
|
||||
@ -124,13 +122,15 @@ fn derive_variant_fields_expr(
|
||||
where_clause: &mut Option<WhereClause>,
|
||||
separator: &str,
|
||||
) -> Tokens {
|
||||
let mut iter = bindings.iter().filter_map(|binding| {
|
||||
let attrs = cg::parse_field_attrs::<CssFieldAttrs>(&binding.ast());
|
||||
if attrs.skip {
|
||||
return None;
|
||||
}
|
||||
Some((binding, attrs))
|
||||
}).peekable();
|
||||
let mut iter = bindings
|
||||
.iter()
|
||||
.filter_map(|binding| {
|
||||
let attrs = cg::parse_field_attrs::<CssFieldAttrs>(&binding.ast());
|
||||
if attrs.skip {
|
||||
return None;
|
||||
}
|
||||
Some((binding, attrs))
|
||||
}).peekable();
|
||||
|
||||
let (first, attrs) = match iter.next() {
|
||||
Some(pair) => pair,
|
||||
@ -190,8 +190,11 @@ fn derive_single_field_expr(
|
||||
}
|
||||
}
|
||||
} else if attrs.represents_keyword {
|
||||
let ident =
|
||||
field.ast().ident.as_ref().expect("Unnamed field with represents_keyword?");
|
||||
let ident = field
|
||||
.ast()
|
||||
.ident
|
||||
.as_ref()
|
||||
.expect("Unnamed field with represents_keyword?");
|
||||
let ident = cg::to_css_identifier(ident.as_ref());
|
||||
quote! {
|
||||
if *#field {
|
||||
|
Loading…
Reference in New Issue
Block a user