optimizations and bugfixes for finally
[swftools.git] / lib / as3 / tokenizer.h
index 6acc38e..44ffd17 100644 (file)
@@ -36,12 +36,6 @@ DECLARE(params);
 DECLARE(typedcode);
 DECLARE_LIST(typedcode);
 
-struct _token {
-    int type;
-    char*text;
-    token_list_t*tokens;
-};
-
 struct _param {
     char*name;
     classinfo_t*type;
@@ -56,11 +50,18 @@ struct _params {
 struct _typedcode {
     code_t*c;
     classinfo_t*t;
-    
-    /* if t == TYPE_FUNCTION */
-    memberinfo_t*f;
 };
 
+/* small helper structs: */
+typedef struct _codeandnumber {
+    code_t*cc;
+    int len;
+} codeandnumber_t;
+typedef struct _for_start {
+    char*name;
+    char each;
+} for_start_t;
+
 extern char start_of_expression;
 
 typedef token_t*tokenptr_t;