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.

#962 Code formatting issue
Author:
honfika

Date created:
Type: bug
Visibility: Everybody
Assigned to:
State: closed 

> What steps will reproduce the problem?
Open for example ronnie.swf\scripts\mx\controls\scrollClasses\ScrollBar.as
There are double spaces between the override and protected keyworkds.
+Missing new lines.
> What is the expected output? What do you see instead?
Current:
override (two space) protected function createChildren() : void
expected:
override (one space) protected function createChildren() : void
2nd:
Current:
if(!cacheAsBitmap)
{
scrollThumb.cacheHeuristic = true;cacheHeuristic = true;
}
Expected:
if(!cacheAsBitmap)
{
scrollThumb.cacheHeuristic = true;
cacheHeuristic = true;
}
Since today or yesterday evening. A lot of files (24000 of 184000 changed)
I can take also a look later.
fixed
State: new→closed