cfg_eval: Replace multiple unwraps with a single unwrap

This commit is contained in:
Vadim Petrochenkov 2021-06-20 18:52:10 +03:00
parent 3f0729f378
commit d9fd5eaae8

View file

@ -36,48 +36,48 @@ crate fn cfg_eval(ecx: &ExtCtxt<'_>, annotatable: Annotatable) -> Annotatable {
}, },
} }
.configure_annotatable(annotatable) .configure_annotatable(annotatable)
// Since the item itself has already been configured by the `InvocationCollector`,
// we know that fold result vector will contain exactly one element.
.unwrap()
} }
struct CfgEval<'a, 'b> { struct CfgEval<'a, 'b> {
cfg: &'a mut StripUnconfigured<'b>, cfg: &'a mut StripUnconfigured<'b>,
} }
fn flat_map_annotatable(vis: &mut impl MutVisitor, annotatable: Annotatable) -> Annotatable { fn flat_map_annotatable(
// Since the item itself has already been configured by the InvocationCollector, vis: &mut impl MutVisitor,
// we know that fold result vector will contain exactly one element annotatable: Annotatable,
) -> Option<Annotatable> {
match annotatable { match annotatable {
Annotatable::Item(item) => Annotatable::Item(vis.flat_map_item(item).pop().unwrap()), Annotatable::Item(item) => vis.flat_map_item(item).pop().map(Annotatable::Item),
Annotatable::TraitItem(item) => { Annotatable::TraitItem(item) => {
Annotatable::TraitItem(vis.flat_map_trait_item(item).pop().unwrap()) vis.flat_map_trait_item(item).pop().map(Annotatable::TraitItem)
} }
Annotatable::ImplItem(item) => { Annotatable::ImplItem(item) => {
Annotatable::ImplItem(vis.flat_map_impl_item(item).pop().unwrap()) vis.flat_map_impl_item(item).pop().map(Annotatable::ImplItem)
} }
Annotatable::ForeignItem(item) => { Annotatable::ForeignItem(item) => {
Annotatable::ForeignItem(vis.flat_map_foreign_item(item).pop().unwrap()) vis.flat_map_foreign_item(item).pop().map(Annotatable::ForeignItem)
} }
Annotatable::Stmt(stmt) => { Annotatable::Stmt(stmt) => {
Annotatable::Stmt(stmt.map(|stmt| vis.flat_map_stmt(stmt).pop().unwrap())) vis.flat_map_stmt(stmt.into_inner()).pop().map(P).map(Annotatable::Stmt)
} }
Annotatable::Expr(mut expr) => Annotatable::Expr({ Annotatable::Expr(mut expr) => {
vis.visit_expr(&mut expr); vis.visit_expr(&mut expr);
expr Some(Annotatable::Expr(expr))
}), }
Annotatable::Arm(arm) => Annotatable::Arm(vis.flat_map_arm(arm).pop().unwrap()), Annotatable::Arm(arm) => vis.flat_map_arm(arm).pop().map(Annotatable::Arm),
Annotatable::ExprField(field) => { Annotatable::ExprField(field) => {
Annotatable::ExprField(vis.flat_map_expr_field(field).pop().unwrap()) vis.flat_map_expr_field(field).pop().map(Annotatable::ExprField)
}
Annotatable::PatField(fp) => {
Annotatable::PatField(vis.flat_map_pat_field(fp).pop().unwrap())
} }
Annotatable::PatField(fp) => vis.flat_map_pat_field(fp).pop().map(Annotatable::PatField),
Annotatable::GenericParam(param) => { Annotatable::GenericParam(param) => {
Annotatable::GenericParam(vis.flat_map_generic_param(param).pop().unwrap()) vis.flat_map_generic_param(param).pop().map(Annotatable::GenericParam)
} }
Annotatable::Param(param) => Annotatable::Param(vis.flat_map_param(param).pop().unwrap()), Annotatable::Param(param) => vis.flat_map_param(param).pop().map(Annotatable::Param),
Annotatable::FieldDef(sf) => { Annotatable::FieldDef(sf) => vis.flat_map_field_def(sf).pop().map(Annotatable::FieldDef),
Annotatable::FieldDef(vis.flat_map_field_def(sf).pop().unwrap()) Annotatable::Variant(v) => vis.flat_map_variant(v).pop().map(Annotatable::Variant),
}
Annotatable::Variant(v) => Annotatable::Variant(vis.flat_map_variant(v).pop().unwrap()),
} }
} }
@ -122,11 +122,11 @@ impl CfgEval<'_, '_> {
self.cfg.configure(node) self.cfg.configure(node)
} }
pub fn configure_annotatable(&mut self, mut annotatable: Annotatable) -> Annotatable { fn configure_annotatable(&mut self, mut annotatable: Annotatable) -> Option<Annotatable> {
// Tokenizing and re-parsing the `Annotatable` can have a significant // Tokenizing and re-parsing the `Annotatable` can have a significant
// performance impact, so try to avoid it if possible // performance impact, so try to avoid it if possible
if !CfgFinder::has_cfg_or_cfg_attr(&annotatable) { if !CfgFinder::has_cfg_or_cfg_attr(&annotatable) {
return annotatable; return Some(annotatable);
} }
// The majority of parsed attribute targets will never need to have early cfg-expansion // The majority of parsed attribute targets will never need to have early cfg-expansion