public static bool CheckHasParameter(this Expression expression, ParameterExpression parameter)
 {
     return(CheckHasParameterVisitor.Check(expression, parameter));
 }