Fixed #1938 AS3 Direct editation - implied this instead of findprop

This commit is contained in:
Jindra Petřík
2023-01-15 18:30:53 +01:00
parent 671ebf08a3
commit 0377a876e3
9 changed files with 72 additions and 8 deletions

View File

@@ -85,6 +85,7 @@ package
TestMultipleCondition;
TestNamedAnonFunctions;
TestNames;
TestNames2;
TestNegate;
TestNumberCall;
TestOptionalParameters;

View 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 {
}
}
}