//! Matching expressions.
usesuper::Expr;usecrate::LocalFunction;// Re-export the custom derive-generated impls here, where it makes more sense
// to expose them.
pubusesuper::generated_matchers::*;/// A trait to match an expression.
pubtraitMatcher{/// Does this expression match?
fnis_match(&self, func:&LocalFunction, expr:&Expr)->bool;}