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
If it is not "re"assignment, but the value is never used afterwards, we can remove it.
If it is not "re"assignment and the value is used after assignment, we cannot remove it. So, we have to change it to Variable declarations with VarDecl. (i.e. change a := 2 to var a int)
The text was updated successfully, but these errors were encountered:
let's delete wasted assignment statements automatically
a := 2
tovar a int
)The text was updated successfully, but these errors were encountered: