mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-25 01:27:26 +00:00
handling imported vars fix
This commit is contained in:
@@ -54,6 +54,7 @@ package
|
||||
TestIfElse;
|
||||
TestIfInIf;
|
||||
TestIgnoreAndOr;
|
||||
TestImportedVar;
|
||||
TestInc2;
|
||||
TestIncDec;
|
||||
TestInlineFunctions;
|
||||
|
||||
14
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestImportedVar.as
vendored
Normal file
14
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestImportedVar.as
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
package tests
|
||||
{
|
||||
import tests_classes.myvar;
|
||||
|
||||
public class TestImportedVar
|
||||
{
|
||||
public function run():void
|
||||
{
|
||||
trace(myvar);
|
||||
//myvar++;
|
||||
myvar = 5;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user