finished ast implementation
[swftools.git] / lib / as3 / tokenizer.h
index 6acc38e..0da4f12 100644 (file)
 #include "registry.h"
 #include "code.h"
 #include "opcodes.h"
+#include "ast.h"
 
 DECLARE(token);
 DECLARE_LIST(token);
 DECLARE(param);
 DECLARE_LIST(param);
 DECLARE(params);
-DECLARE(typedcode);
+DECLARE(modifiers);
+DECLARE(namespace_decl);
+DECLARE_LIST(namespace_decl);
 DECLARE_LIST(typedcode);
 
-struct _token {
-    int type;
-    char*text;
-    token_list_t*tokens;
-};
-
 struct _param {
     char*name;
     classinfo_t*type;
@@ -53,23 +50,45 @@ struct _params {
     char varargs;
 };
 
-struct _typedcode {
-    code_t*c;
-    classinfo_t*t;
-    
-    /* if t == TYPE_FUNCTION */
-    memberinfo_t*f;
+struct _modifiers {
+    int flags;
+    char*ns;
 };
+struct _namespace_decl {
+    const char*name;
+    const char*url;
+};
+
+/* small helper structs: */
+typedef struct _codeandnumber {
+    code_t*cc;
+    int number;
+} codeandnumber_t;
+typedef struct _for_start {
+    char*name;
+    char each;
+} for_start_t;
+typedef struct _regexp {
+    char*pattern;
+    char*options;
+} regexp_t;
 
 extern char start_of_expression;
 
 typedef token_t*tokenptr_t;
 
+extern trie_t*active_namespaces;
+
 #include "parser.tab.h"
 
-void syntaxerror(const char*format, ...);
-void warning(const char*format, ...);
+extern unsigned int as3_tokencount;
+
+void as3_buffer_input(void*buffer, int len);
+void as3_file_input(FILE*fi);
 
 #define T_EOF 0
 
+extern int avm2_lex();
+extern int avm2_lex_destroy();
+
 #endif