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:
ebda861
)
new keyword 'with'
author
kramm
<kramm>
Fri, 2 Jan 2009 21:22:03 +0000
(21:22 +0000)
committer
kramm
<kramm>
Fri, 2 Jan 2009 21:22:03 +0000
(21:22 +0000)
lib/as3/tokenizer.lex
patch
|
blob
|
history
diff --git
a/lib/as3/tokenizer.lex
b/lib/as3/tokenizer.lex
index
45c09a8
..
4647d30
100644
(file)
--- a/
lib/as3/tokenizer.lex
+++ b/
lib/as3/tokenizer.lex
@@
-519,6
+519,7
@@
true {c();return m(KW_TRUE);}
null {c();return m(KW_NULL);}
else {c();return m(KW_ELSE);}
case {c();return m(KW_CASE);}
+with {c();return m(KW_WITH);}
use {c();return m(KW_USE);}
new {c();return m(KW_NEW);}
get {c();return m(KW_GET);}