mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-06 09:25:51 +00:00
Fixed: Direct editation.
Fixed: Imports in script initializer
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,8 @@
|
||||
|
||||
package tests_classes
|
||||
{
|
||||
import tests.TestHello;
|
||||
|
||||
public class TestScriptInitializer
|
||||
{
|
||||
private static var sa:int = 5;
|
||||
@@ -29,11 +31,14 @@ package tests_classes
|
||||
|
||||
public function test() : void {
|
||||
const x:int = 5;
|
||||
|
||||
var th:TestHello = new TestHello();
|
||||
}
|
||||
}
|
||||
//TestImports;
|
||||
}
|
||||
}
|
||||
|
||||
import tests.TestHello;
|
||||
|
||||
var x:int = Math.random() * 100;
|
||||
|
||||
var a:int = 5;
|
||||
@@ -59,3 +64,4 @@ for each (v in [1,3,5])
|
||||
trace(v);
|
||||
}
|
||||
|
||||
TestHello;
|
||||
|
||||
Reference in New Issue
Block a user