X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Ftokenizer.h;h=d48152b3ecf31a4385b4655795e1232d67a1f206;hb=8e2bbca55e9bde3ce9673d4d616e4c144b087d1f;hp=e3bf43da0c065b6748e61c146765f4a94ef11cdf;hpb=0eda529c20b34e93cbac7b798bccd53df65304e6;p=swftools.git diff --git a/lib/as3/tokenizer.h b/lib/as3/tokenizer.h index e3bf43d..d48152b 100644 --- a/lib/as3/tokenizer.h +++ b/lib/as3/tokenizer.h @@ -32,31 +32,40 @@ DECLARE(token); DECLARE_LIST(token); DECLARE(param); DECLARE_LIST(param); +DECLARE(params); DECLARE(typedcode); DECLARE_LIST(typedcode); -struct _token { - int type; - char*text; - token_list_t*tokens; -}; - -typedef struct _writeable { - code_t*write; - code_t*read; - class_signature_t*type; -} writeable_t; - struct _param { char*name; - class_signature_t*type; + classinfo_t*type; + constant_t*value; +}; + +struct _params { + param_list_t*list; + char varargs; }; struct _typedcode { code_t*c; - class_signature_t*t; + classinfo_t*t; }; +/* small helper structs: */ +typedef struct _codeandnumber { + code_t*cc; + int len; +} 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; @@ -64,6 +73,7 @@ typedef token_t*tokenptr_t; #include "parser.tab.h" void syntaxerror(const char*format, ...); +void warning(const char*format, ...); #define T_EOF 0