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.

#2231 Unnecessary String conversion
Author:
Aivaz

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

> What is the expected output? What do you see instead?
instead of the expected decompilation
var text:String = this.strings[id];
I get
var text:String = String(this.strings[id]);
because of this if(text == null) return id;
condition will never be fulfilled;
because String(null) will not give null, it will give "null"
or String(undefined) = "undefined"
> What version of the product are you using? Is it "nightly build"? Which operating system
do you have?
v20.1.0
> Please provide any additional information below. If the problem is related to a SWF
file, attach it here, otherwise we can't help you.

This is fixed in nightly2790.
State: new→upgraded
State: upgraded→closed