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.

#1192 Multiple default case in switch
Author:
honfika

Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: AS1/2Decompilation
State: closed 

> What steps will reproduce the problem?
decompile: wOne_Designer_secure.swf\scripts\__Packages\CWOne.as
> What is the expected output? What do you see instead?
Current:
switch(CWOne.mState)
{
case CWOne.mState_Main:
default:
case CWOne.mState_MissionSelection:
default:
case CWOne.mState_Briefing:
default:
case CWOne.mState_Debrief:
default:
}
Expected: only 1 default case
> What version of the product are you using? Is it "nightly build"? Which operating system
do you have?
8.0.1 niglty 1317
> Please provide any additional information below. If the problem is related to a SWF
file, attach it here, otherwise we can't help you.
In 7.1.1 it was:
switch(CWOne.mState)
{
case CWOne.mState_Main:
case CWOne.mState_MissionSelection:
case CWOne.mState_Briefing:
case CWOne.mState_Debrief:
break;
}
This is fixed in current version - 13.x
I am closing this.
State: new→closed