X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fas3%2Fabc.h;h=a180f85da3319d0a5aba3f0f1f33bbd4adec4edf;hb=52bfc16bb70b2e5086f97c45ec2b59339aceb66f;hp=54749f7b04d6946c4d1c32a6c9304e2d0560a09d;hpb=1b8d54ccb52b7dd1e327272a65d7b0c6b951a8fc;p=swftools.git diff --git a/lib/as3/abc.h b/lib/as3/abc.h index 54749f7..a180f85 100644 --- a/lib/as3/abc.h +++ b/lib/as3/abc.h @@ -55,6 +55,8 @@ struct _abc_method { const char*name; U8 flags; abc_method_body_t*body; + + trait_t*trait; int index; //filled in during writing }; @@ -102,6 +104,11 @@ struct _trait { constant_t*value; }; +#define CLASS_SEALED 1 +#define CLASS_FINAL 2 +#define CLASS_INTERFACE 4 +#define CLASS_PROTECTED_NS 8 + struct _abc_class { abc_file_t*file; @@ -132,9 +139,12 @@ void abc_class_interface(abc_class_t*c); void abc_class_protectedNS(abc_class_t*c, char*namespace); void abc_class_add_interface(abc_class_t*c, multiname_t*interface); +trait_t* abc_class_find_slotid(abc_class_t*c, int slotid); + abc_method_body_t* abc_class_staticconstructor(abc_class_t*cls, multiname_t*returntype, int num_params, ...); abc_method_body_t* abc_class_constructor(abc_class_t*cls, multiname_t*returntype, int num_params, ...); abc_method_body_t* abc_class_method(abc_class_t*cls, multiname_t*returntype, char*name, int num_params, ...); +trait_t* abc_class_slot(abc_class_t*cls, char*name, multiname_t*type); struct _abc_exception { code_t*from;