You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The anazlyer is now detecting variables within arithmetic expressions,
but still not let, postfix, or binary expressions
So a rename on
```
for i in 1 2 3; do
echo "$i"
done
let i=0
for (( ; i < 10; i++)); do
echo "$((2 * i))"
done
```
Would be changed to
```
for new_name in 1 2 3; do
echo "$new_name"
done
let i=0
for (( ; i < 10; i++)); do
echo "$((2 * new_name))"
done
```
0 commit comments