ton-blockchain/intellij-ton

Unused variable trick

Opened this issue · 0 comments

QSTpO7m
I propose to add a trick that will suggest either removing the variable completely, or replacing it with _ .
Example (var b used, other - no) ->
(int a, int b, int c) = load_data() -> (_, int b, _) = load_data()