报告无意义或复杂的没有意义的布尔表达式或语句。

示例:


  let a = !(false && x);
  let b = false || x;

应用该快速修复后,结果将如下所示:


  let a = true;
  let b = x;