mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-03 15:35:10 +00:00
Fixed AS3 Metadata values order
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -83,6 +83,7 @@ package
|
||||
TestInnerTry;
|
||||
TestLogicalComputing;
|
||||
TestManualConvert;
|
||||
TestMetadata;
|
||||
TestMissingDefault;
|
||||
TestMultipleCondition;
|
||||
TestNamedAnonFunctions;
|
||||
|
||||
14
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestMetadata.as
vendored
Normal file
14
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestMetadata.as
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
package tests
|
||||
{
|
||||
[MyClassTag(cls1 = "class 1", cls2 = "class 2")]
|
||||
public class TestMetadata
|
||||
{
|
||||
[MyVarTag(var1 = "var 1", var2 = "var 2")]
|
||||
public var v:int = 5;
|
||||
|
||||
public function run(): void
|
||||
{
|
||||
trace("hello");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user