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.

#986 wrong type
Author:
BeniBela

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

After fixing the compiling issues, I am running into runtime issues...
Often the type is not recognized and :int becomes :*
e.g.
public static function formatTime(param1:Number) : String
{
var _loc2_:int = param1 / 60 / 60 / 24;
var _loc3_:* = 0;
...
_loc3_ = _loc2_ / ...
instead
public static function formatTime(param1:Number) : String
{
var _loc2_:int = param1 / 60 / 60 / 24;
var _loc3_:int = 0;
_loc3_ = _loc2_ / ...
or in
private function initMap(param1:Array) : void
Same SWF as before
I cannot reproduce it in current version so it seems to be fixed.
I am closing this issue.
State: new→closed