mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-05 06:24:37 +00:00
Fixed #1938 AS3 Direct editation - implied this instead of findprop
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -85,6 +85,7 @@ package
|
||||
TestMultipleCondition;
|
||||
TestNamedAnonFunctions;
|
||||
TestNames;
|
||||
TestNames2;
|
||||
TestNegate;
|
||||
TestNumberCall;
|
||||
TestOptionalParameters;
|
||||
|
||||
26
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestNames2.as
vendored
Normal file
26
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestNames2.as
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestNames2
|
||||
{
|
||||
public var i:int = 0;
|
||||
|
||||
public function run():void
|
||||
{
|
||||
var j:int = 0;
|
||||
var g:Function = null;
|
||||
this.i = 0;
|
||||
i = 1;
|
||||
j = 2;
|
||||
trace(this.i);
|
||||
trace(i);
|
||||
trace(j);
|
||||
f();
|
||||
this.f();
|
||||
g();
|
||||
}
|
||||
|
||||
public function f(): void {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user