86 |
|
|
87 |
(***** Keywords and operators *****) |
(***** Keywords and operators *****) |
88 |
|
|
|
<INITIAL> "+" => (T.OP_plus); |
|
|
<INITIAL> "-" => (T.OP_minus); |
|
|
<INITIAL> "*" => (T.OP_star); |
|
|
<INITIAL> "@" => (T.OP_at); |
|
89 |
<INITIAL> "(" => (T.LP); |
<INITIAL> "(" => (T.LP); |
90 |
<INITIAL> ")" => (T.RP); |
<INITIAL> ")" => (T.RP); |
91 |
<INITIAL> "[" => (T.LB); |
<INITIAL> "[" => (T.LB); |
92 |
<INITIAL> "]" => (T.RB); |
<INITIAL> "]" => (T.RB); |
93 |
<INITIAL> "{" => (T.LCB); |
<INITIAL> "{" => (T.LCB); |
94 |
<INITIAL> "}" => (T.RCB); |
<INITIAL> "}" => (T.RCB); |
95 |
|
<INITIAL> "||" => (T.OP_orelse); |
96 |
|
<INITIAL> "&&" => (T.OP_andalso); |
97 |
|
<INITIAL> "<" => (T.OP_lt); |
98 |
|
<INITIAL> "<=" => (T.OP_lte); |
99 |
|
<INITIAL> "==" => (T.OP_eqeq); |
100 |
|
<INITIAL> "!=" => (T.OP_neq); |
101 |
|
<INITIAL> ">=" => (T.OP_gte); |
102 |
|
<INITIAL> ">" => (T.OP_gt); |
103 |
|
<INITIAL> "+" => (T.OP_plus); |
104 |
|
<INITIAL> "-" => (T.OP_minus); |
105 |
|
<INITIAL> "*" => (T.OP_star); |
106 |
|
<INITIAL> "@" => (T.OP_at); |
107 |
|
<INITIAL> "," => (T.COMMA); |
108 |
|
<INITIAL> ";" => (T.SEMI); |
109 |
|
<INITIAL> "#" => (T.HASH); |
110 |
|
<INITIAL> "!" => (T.BANG); |
111 |
|
|
112 |
(***** Comments *****) |
(***** Comments *****) |
113 |
<INITIAL> "//" |
<INITIAL> "//" |