mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 10:55:12 +00:00
AMF3 tests, exceptions
This commit is contained in:
24
libsrc/ffdec_lib/testdata/amf3/ObjectWithCustom.as
vendored
Normal file
24
libsrc/ffdec_lib/testdata/amf3/ObjectWithCustom.as
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
package
|
||||
{
|
||||
public class ObjectWithCustom
|
||||
{
|
||||
|
||||
public var a:String;
|
||||
public var b:String;
|
||||
public var c:CustomClass;
|
||||
public var d:String;
|
||||
public var e:String;
|
||||
public var f:String;
|
||||
|
||||
|
||||
public function ObjectWithCustom(a:String,b:String,c:CustomClass,d:String,e:String,f:String) {
|
||||
this.a = a;
|
||||
this.b = b;
|
||||
this.c = c;
|
||||
this.d = d;
|
||||
this.e = e;
|
||||
this.f = f;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user