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.

#208 Rename Invalid identifiers renames anonymous functions
Author:
focus

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

This code:
_global.someFunction = function()
{
trace(1);
}
someFunction();
will became this:
_global.someFunction=function function_1()
{
trace(1);
};
someFunction();
And you'll see message 0 identifiers were renamed after calling rename invalid
identifiers.
State: new→opened
Version 1.6.6 was released.
This should be fixed, try it.
State: opened→upgraded
Yep, works fine now!
State: upgraded→closed