added missing imports
[swftools.git] / lib / as3 / tokenizer.h
index 0b2689c..57026ca 100644 (file)
 #define __parser_h__
 
 #include "../q.h"
+#include "abc.h"
 #include "pool.h"
+#include "files.h"
+#include "tokenizer.h"
+#include "registry.h"
 #include "code.h"
+#include "opcodes.h"
 
 DECLARE(token);
 DECLARE_LIST(token);
@@ -37,12 +42,12 @@ struct _token {
 typedef struct _writeable {
     code_t*write;
     code_t*read;
-    multiname_t*type;
+    class_signature_t*type;
 } writeable_t;
 
 struct _typedcode {
     code_t*c;
-    multiname_t*t;
+    class_signature_t*t;
 };
 struct _typedcode_list {
     struct _typedcode typedcode;