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

#761 switch bug
Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: AS3
State: closed Help

> What steps will reproduce the problem? var j:int=0; var i:int=0; while(i++ < 100){ switch(i){ case 0: j=1; break; case 2: continue; default: j=i; break; } } > What is the expected output? What do you see instead? Decomiple Code is: var j:int = 0; var i:int = 0; while(i++ < 100){ switch(i){ case 0: j = 1; continue; case 2: continue; } } > What version of the product are you using? On what operating system? v.4.0.5 > Please provide any additional information below. Attach the file you have problem with if neccessary. If you do not want to publish files YOU CAN CHANGE VISIBILITY TO PRIVATE
user
Duplicate of /www.free-decompiler.com/flash/issues/595-direct-as3-edition-invalid-getter-setter-crashes -flashplayer Try newest nightly build and tell if it works. (I can't test it right now, sorry.)
admin
It is not a duplicate. Duplicate means that the issues are on same topic. This one is about wrong AS3 decompilation of switch default case. I think the current nightly 998 or later decompiles it correctly. If not, then attach sample compiled swf file.
State: new→upgraded
developer
I close this issue due to inactivity. Please create new issue if problem persists.
State: upgraded→closed