If you are looking for the decompiler itself, visit https://github.com/jindrapetrik/jpexs-decompiler
NEW : You can now close your own issues and reopen them later if needed. You can also comment closed issues.
List of issues#2323 Assignment appears in constructor on save
Author:
Thisguy248
Thisguy248Date created:
Type: bug
Visibility: Everybody
Assigned to:
Labels: AS3Direct Editation
State: closed 

> What steps will reproduce the problem?
Download the attached swf and go to com.metanet.App_MultiPurpose, press Edit ActionScript,
add a spacebar, and press save.
> What is the expected output? What do you see instead?
Here is a variable in the members list of the class
private var SLOW_THRESHOLD:Number = 0.15;
Whenever you save, it appears in the constructor as an assignment, for example if you save
6 times you get this:
public function App_MultiPurpose()
{
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
this.SLOW_THRESHOLD = 0.15;
super();
this._timeFormatter = new TimeFormatter();
}
> What version of the product are you using? Is it "nightly build"? Which operating system
do you have?
v.21.1.0 nightly build 2920 on windows 10
Nv2.swf (552 KiB)This is fixed in nightly 2923.
State: new→upgraded
looks good, thanks!
You're welcome.
State: upgraded→closed
