X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fopcodes.h;h=b353243bbe287c99bb393ecce0e16be9ba3726cc;hb=3a6bca721cad44853f77a3e76f937d0ef5ff7bf5;hp=49801a599470533965bfa417081ad8635d84cc80;hpb=51d69665a343a5f459cfa01b74a04fdc48ec68f0;p=swftools.git diff --git a/lib/as3/opcodes.h b/lib/as3/opcodes.h index 49801a5..b353243 100644 --- a/lib/as3/opcodes.h +++ b/lib/as3/opcodes.h @@ -501,6 +501,9 @@ code_t* abc_urshift(code_t*prev); code_t* abc_applytype(code_t*prev, int v); #define applytype(method,v) (method->code = abc_applytype(method->code,v)) #define OPCODE_APPLYTYPE 0x53 +code_t* abc___rethrow__(code_t*prev); +#define __rethrow__(method) (method->code = abc___rethrow__(method->code)) +#define OPCODE___RETHROW__ 0xfc code_t* abc___fallthrough__(code_t*prev, char* name); #define __fallthrough__(method,name) (method->code = abc___fallthrough__(method->code,name)) #define OPCODE___FALLTHROUGH__ 0xfd