classinfo_t now has a union member for storing subclasses/submembers
[swftools.git] / lib / as3 / code.h
index 6e326a3..6ae24b9 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);
 
@@ -97,6 +97,8 @@ void codestats_free(codestats_t*s);
 
 code_t* code_append(code_t*code, code_t*toappend);
 
+code_t* cut_last_push(code_t*_c);
+
 #define code_new() (0)
 
 #endif