5506e0dfaf
10139: Fix replacing for loops over ranges with for_each. r=yotamofek a=yotamofek Previously, the assist would turn this: ```rust for x in 0..92 { ... } ``` into the syntactically incorrect code below: ```rust 0..92.for_each(|x| ...) ``` This fixes the assist by parenthesizing range expressions. Co-authored-by: Yotam Ofek <yotam.ofek@gmail.com>