string GetHints(Expression e, object value)
 {
     if (value is bool && !(bool)value)
     {
         string hint;
         if (Hinter.TryGetHint(this, e, out hint))
         {
             return(hint);
         }
     }
     return("");
 }