JPEXS Free Flash Decompiler Issue Tracker

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.

List of issuesList of issues

#986 wrong type
Author:
Date created:
Type: bug
Visibility: Everybody
Assigned to:
State: closed Help

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