X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fopcodes.h;h=49801a599470533965bfa417081ad8635d84cc80;hb=51d69665a343a5f459cfa01b74a04fdc48ec68f0;hp=a60f79857694d5e1ad6f77d6fae0fdd81edd3e25;hpb=d424b19bfbd0658640f976f9117305737fb87678;p=swftools.git diff --git a/lib/as3/opcodes.h b/lib/as3/opcodes.h index a60f798..49801a5 100644 --- a/lib/as3/opcodes.h +++ b/lib/as3/opcodes.h @@ -501,6 +501,12 @@ 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___fallthrough__(code_t*prev, char* name); +#define __fallthrough__(method,name) (method->code = abc___fallthrough__(method->code,name)) +#define OPCODE___FALLTHROUGH__ 0xfd +code_t* abc___fallthrough__2(code_t*prev, string_t* s); +#define __fallthrough__2(method,s) (method->code = abc___fallthrough__2(method->code,s)) +#define OPCODE___FALLTHROUGH__2 0xfd code_t* abc___continue__(code_t*prev, char* name); #define __continue__(method,name) (method->code = abc___continue__(method->code,name)) #define OPCODE___CONTINUE__ 0xfe