X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fas3%2Ftokenizer.lex;h=127379a75d1f65c38cfffbab01ede12e4a86d6c1;hp=805cf2e68ee516da0e3329719f3fc7d1df1356f6;hb=71b5bc980e9f3fa962167da70043f0b16e253906;hpb=62a83d162b254d91da418cee25f5b87b067a3f92 diff --git a/lib/as3/tokenizer.lex b/lib/as3/tokenizer.lex index 805cf2e..127379a 100644 --- a/lib/as3/tokenizer.lex +++ b/lib/as3/tokenizer.lex @@ -579,6 +579,7 @@ switch {c();BEGIN(INITIAL);a3_lval.id="";return T_SWITCH;} [%][=] {c();BEGIN(REGEXPOK);return m(T_MODBY);} [*][=] {c();BEGIN(REGEXPOK);return m(T_MULBY);} [|][=] {c();BEGIN(REGEXPOK);return m(T_ORBY);} +[&][=] {c();BEGIN(REGEXPOK);return m(T_ANDBY);} [>][>][=] {c();BEGIN(REGEXPOK);return m(T_SHRBY);} [<][<][=] {c();BEGIN(REGEXPOK);return m(T_SHLBY);} [>][>][>][=] {c();BEGIN(REGEXPOK);return m(T_USHRBY);}