Detects if the match statement can be converted to pattern matching anonymous function.

Before:

iterable.map(value => value match {
    case Some(value) => whenValue(value)
    case None => whenNothing()
})

After:
iterable.map {
    case Some(value) => whenValue(value)
    case None => whenNothing()
}