X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fabc.h;h=a180f85da3319d0a5aba3f0f1f33bbd4adec4edf;hb=18a08d4b5573ce1aa0fccbdd5293baafb54d0591;hp=4a6c65d4ed0122491c095d585568c85783ff6fe6;hpb=70080bc309ba2a414647d27e2f413f22bc7823e4;p=swftools.git diff --git a/lib/as3/abc.h b/lib/as3/abc.h index 4a6c65d..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 }; @@ -137,6 +139,8 @@ 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, ...);