Storyyeller / Krakatau

Java decompiler, assembler, and disassembler
GNU General Public License v3.0
1.95k stars 219 forks source link

use ++ and -- for iinc #150

Closed GraxCode closed 6 years ago

GraxCode commented 6 years ago

iinc 0 1 is currently decompiled as i0 = i0 + 1; but it should be decompiled as i0++;

Janmm14 commented 6 years ago

Doesn't make any difference.

GraxCode commented 6 years ago

But makes the code look cleaner and easier to read

Storyyeller commented 6 years ago

This has a very small benefit compared to the complexity of implementing it, so it's not a high priority.