From 6d87a7d85f89d5b6a22fe6f1e8891ec73ed682f6 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Sat, 14 Mar 2009 21:00:07 +0100 Subject: [PATCH] new internal opcode 'pushpackage' --- lib/as3/code.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/as3/code.c b/lib/as3/code.c index acccb6a..6ef68a3 100644 --- a/lib/as3/code.c +++ b/lib/as3/code.c @@ -201,9 +201,10 @@ opcode_t opcodes[]={ {0x53, "applytype", "n", -1, 1, 0, OP_STACK_ARGS}, /* dummy instructions. Warning: these are not actually supported by flash */ +{0xfb, "__pushpackage__", "s", 0, 1, 0, OP_INTERNAL}, {0xfc, "__rethrow__", "", 0, 0, 0, OP_THROW|OP_INTERNAL}, -{0xfd, "__fallthrough__", "s", 0, 0, 0, OP_INTERNAL}, -{0xfe, "__continue__", "s", 0, 0, 0, OP_RETURN|OP_INTERNAL}, +{0xfd, "__fallthrough__", "s", 0, 0, 0, OP_INTERNAL}, +{0xfe, "__continue__", "s", 0, 0, 0, OP_RETURN|OP_INTERNAL}, {0xff, "__break__", "s", 0, 0, 0, OP_RETURN|OP_INTERNAL}, }; -- 1.7.10.4