Reports lambdas which body is an expression, e.g. n -> n + 1

The quick fix converts lambda's expression body to a code block, like the following:

n -> {
  return n + 1;
}