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 issues#1360 Local register postincrement, decrement precedence
Author: Daniel
Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: AS3Decompilation
State: closed
Please see attached SWFs
I'll copy the task summary here from the Word file:
1. The Solve method of the Box2D.Dynamics.b2World class in 661.swf decompile error;
_loc8_[_loc15_] = _loc9_; _loc15_ variables of this line are not declared.
The correct decompile should be _loc8_[_loc10_++] = _loc9_
2. In 3042.swf, The liang.util.zip.Inflater class bits method decompile error:
Return _loc2_ & 1 "Param1 - 1; there is a problem with precedence of operator in this
line.
The correct statement should be:
Return _loc2_ & (1 << Param1) - 1;
Because the operator of << has a lower priority than the operator precedence of - ,
Both problems are solved in nightly version 1790.
State: new→upgraded
Title: Update #1358 Part 2→Local register postincrement, decrement precedence
State: upgraded→closed