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:
348ac44
)
new keyword super
author
kramm
<kramm>
Tue, 30 Dec 2008 23:06:14 +0000
(23:06 +0000)
committer
kramm
<kramm>
Tue, 30 Dec 2008 23:06:14 +0000
(23:06 +0000)
lib/as3/tokenizer.lex
patch
|
blob
|
history
diff --git
a/lib/as3/tokenizer.lex
b/lib/as3/tokenizer.lex
index
89f5e19
..
f523949
100644
(file)
--- a/
lib/as3/tokenizer.lex
+++ b/
lib/as3/tokenizer.lex
@@
-474,6
+474,7
@@
const {c();return m(KW_CONST);}
final {c();return m(KW_FINAL);}
false {c();return m(KW_FALSE);}
break {c();return m(KW_BREAK);}
+super {c();return m(KW_SUPER);}
void {c();return m(KW_VOID);}
true {c();return m(KW_TRUE);}
null {c();return m(KW_NULL);}