git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19f7d1e
)
new struct 'params'
author
kramm
<kramm>
Tue, 30 Dec 2008 23:04:22 +0000
(23:04 +0000)
committer
kramm
<kramm>
Tue, 30 Dec 2008 23:04:22 +0000
(23:04 +0000)
lib/as3/tokenizer.h
patch
|
blob
|
history
diff --git
a/lib/as3/tokenizer.h
b/lib/as3/tokenizer.h
index
5e9452e
..
bc81e96
100644
(file)
--- a/
lib/as3/tokenizer.h
+++ b/
lib/as3/tokenizer.h
@@
-32,6
+32,7
@@
DECLARE(token);
DECLARE_LIST(token);
DECLARE(param);
DECLARE_LIST(param);
+DECLARE(params);
DECLARE(typedcode);
DECLARE_LIST(typedcode);
@@
-46,9
+47,17
@@
struct _param {
classinfo_t*type;
};
+struct _params {
+ param_list_t*list;
+ char varargs;
+};
+
struct _typedcode {
code_t*c;
classinfo_t*t;
+
+ /* if t == TYPE_FUNCTION */
+ memberinfo_t*f;
};
extern char start_of_expression;