test case for finally, with more complicated finally blocks
[swftools.git] / lib / as3 / code.h
index 6e326a3..6ef515e 100644 (file)
@@ -77,7 +77,7 @@ struct _codelookup {
     int len;
 };
 
-code_t*code_dup(code_t*c); //shallow copy
+code_t*code_dup(code_t*c);
 
 code_t*add_opcode(code_t*atag, U8 op);
 
@@ -95,8 +95,12 @@ codestats_t* code_get_statistics(code_t*code, abc_exception_list_t*exceptions);
 void codestats_print(codestats_t*s);
 void codestats_free(codestats_t*s);
 
+code_t* code_start(code_t*c);
+
 code_t* code_append(code_t*code, code_t*toappend);
 
+code_t* cut_last_push(code_t*_c);
+
 #define code_new() (0)
 
 #endif