4616b33db615bee885536aa20ebef74dcb90df62
[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_LIST(typedcode);
38
39 struct _param {
40     char*name;
41     classinfo_t*type;
42     constant_t*value;
43 };
44
45 struct _params {
46     param_list_t*list;
47     char varargs;
48 };
49
50 struct _typedcode {
51     code_t*c;
52     classinfo_t*t;
53 };
54
55 /* small helper structs: */
56 typedef struct _codeandnumber {
57     code_t*cc;
58     int len;
59 } codeandnumber_t;
60 typedef struct _for_start {
61     char*name;
62     char each;
63 } for_start_t;
64 typedef struct _regexp {
65     char*pattern;
66     char*options;
67 } regexp_t;
68
69 extern char start_of_expression;
70
71 typedef token_t*tokenptr_t;
72
73 #include "parser.tab.h"
74
75 extern int as3_verbosity;
76 extern int as3_pass;
77 extern unsigned int as3_tokencount;
78 #define syntaxerror as3_error
79 void as3_error(const char*format, ...);
80 void as3_warning(const char*format, ...);
81 void as3_softwarning(const char*format, ...);
82
83 void as3_buffer_input(void*buffer, int len);
84 void as3_file_input(FILE*fi);
85
86 void tokenizer_register_namespace(const char*id);
87
88 #define T_EOF 0
89
90 extern int avm2_lex();
91 extern int avm2_lex_destroy();
92
93 #endif