AMF3 tests, exceptions

This commit is contained in:
Jindra Petřík
2016-07-17 15:48:56 +02:00
parent ec5ca5c3f1
commit f7b3d502cb
39 changed files with 2639 additions and 1545 deletions

View 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;
}
}
}