JPEXS Free Flash Decompiler Issue Tracker

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 issuesList of issues

#152 Empty "if" bracnhes
Author: developer honfika
Date created:
Type: bug
Visibility: Everybody
Assigned to:
State: closed Help

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.
developer
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 "!"
admin
State: new→opened
admin
version 1.6.4 was released this should be fixed, try it
State: opened→upgraded
developer
Yes, fixed. Thanks.
admin
State: upgraded→closed