continued namespace member implementation
[swftools.git] / lib / as3 / tokenizer.h
1 /* tokenizer.h
2
3    Copyright (c) 2008 Matthias Kramm <kramm@quiss.org>
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
18
19 #ifndef __parser_h__
20 #define __parser_h__
21
22 #include "../q.h"
23 #include "abc.h"
24 #include "pool.h"
25 #include "files.h"
26 #include "tokenizer.h"
27 #include "registry.h"
28 #include "code.h"
29 #include "opcodes.h"
30
31 DECLARE(token);
32 DECLARE_LIST(token);
33 DECLARE(param);
34 DECLARE_LIST(param);
35 DECLARE(params);
36 DECLARE(typedcode);
37 DECLARE(modifiers);
38 DECLARE_LIST(typedcode);
39
40 struct _param {
41     char*name;
42     classinfo_t*type;
43     constant_t*value;
44 };
45
46 struct _params {
47     param_list_t*list;
48     char varargs;
49 };
50
51 struct _typedcode {
52     code_t*c;
53     classinfo_t*t;
54 };
55 struct _modifiers {
56     int flags;
57     char*ns;
58 };
59
60 /* small helper structs: */
61 typedef struct _codeandnumber {
62     code_t*cc;
63     int len;
64 } codeandnumber_t;
65 typedef struct _for_start {
66     char*name;
67     char each;
68 } for_start_t;
69 typedef struct _regexp {
70     char*pattern;
71     char*options;
72 } regexp_t;
73
74 extern char start_of_expression;
75
76 typedef token_t*tokenptr_t;
77
78 #include "parser.tab.h"
79
80 extern int as3_verbosity;
81 extern int as3_pass;
82 extern unsigned int as3_tokencount;
83 #define syntaxerror as3_error
84 void as3_error(const char*format, ...);
85 void as3_warning(const char*format, ...);
86 void as3_softwarning(const char*format, ...);
87
88 void as3_buffer_input(void*buffer, int len);
89 void as3_file_input(FILE*fi);
90
91 void tokenizer_register_namespace(const char*id);
92
93 #define T_EOF 0
94
95 extern int avm2_lex();
96 extern int avm2_lex_destroy();
97
98 #endif