X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fabc.h;h=cfa48b0fd28568a2ab07b44fb62a59d2c9eda043;hb=95706ae1c7ff59b6396c54da046b61eca7f3982f;hp=a29897316d4ef2fca3ebdce30ae3f1ada2cc346f;hpb=f705640c6a4dddc9aff22bcb8b7098dcce713940;p=swftools.git diff --git a/lib/as3/abc.h b/lib/as3/abc.h index a298973..cfa48b0 100644 --- a/lib/as3/abc.h +++ b/lib/as3/abc.h @@ -32,6 +32,8 @@ DECLARE(abc_method); DECLARE(abc_method_body); DECLARE(abc_interface); DECLARE(abc_class); +DECLARE(exception); +DECLARE_LIST(exception); #include "code.h" #include "opcodes.h" @@ -121,26 +123,32 @@ abc_method_body_t* abc_class_staticconstructor(abc_class_t*cls, char*returntype, abc_method_body_t* abc_class_constructor(abc_class_t*cls, char*returntype, int num_params, ...); abc_method_body_t* abc_class_method(abc_class_t*cls, char*returntype, char*name, int num_params, ...); +struct _exception { + code_t*from; + code_t*to; + code_t*target; + multiname_t*exc_type; + multiname_t*var_name; +}; + struct _abc_method_body { abc_file_t*pool; //abc_class_t*cls; abc_method_t*method; - abc_code_t*code; + code_t*code; int max_stack; int local_count; int init_scope_depth; int max_scope_depth; - int exception_count; + exception_list_t* exceptions; + trait_list_t*traits; int index; // filled in during writing }; -typedef struct _abc_label { -} abc_label_t; - typedef struct _abc_script { abc_method_t*method; abc_file_t*pool;