handling imported vars fix

This commit is contained in:
Jindra Petřík
2021-02-25 20:51:27 +01:00
parent 5ea2cc42a1
commit 0a0e04bab8
6 changed files with 41 additions and 10 deletions

View File

@@ -54,6 +54,7 @@ package
TestIfElse;
TestIfInIf;
TestIgnoreAndOr;
TestImportedVar;
TestInc2;
TestIncDec;
TestInlineFunctions;

View File

@@ -0,0 +1,14 @@
package tests
{
import tests_classes.myvar;
public class TestImportedVar
{
public function run():void
{
trace(myvar);
//myvar++;
myvar = 5;
}
}
}