If you are looking for the decompiler itself, visit https://github.com/jindrapetrik/jpexs-decompiler
NEW : We have got a new blog where we post some interesting SWF internals info.
List of issues#152 Empty "if" bracnhes
Author: honfika
Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: Decompilation
State: closed
In the previous version you have inverted the empty if branches when the true brach was
empty. The invert condition should be: "true brach is empty but false is not empty".
In 1.6.3.u1 i got this code:
if(SettingsDlg)
{
}
In 1.6.3.u2:
if(!SettingsDlg)
{
}
in this case the invertion is unnecessary.
Maybe a better solution would be check the first operator, and if it is "!" then you can
inverse the "if".
So invert when:
- true is empty and false is not empty, or
- true is empty and the first operator in the condition is "!"
State: new→opened
version 1.6.4 was released
this should be fixed, try it
State: opened→upgraded
Yes, fixed. Thanks.
State: upgraded→closed