diff options
author | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1994-10-18 12:30:29 -0200 |
---|---|---|
committer | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1994-10-18 12:30:29 -0200 |
commit | 3386e3c1fba2a829fdf5987edce2a501d6379a5a (patch) | |
tree | b5f7cd7a0c24f1d94675fa91c2bf0e5c119c938c | |
parent | 25010f8e0908c74475333396730c7d0653e3dcb8 (diff) | |
download | lua-3386e3c1fba2a829fdf5987edce2a501d6379a5a.tar.gz lua-3386e3c1fba2a829fdf5987edce2a501d6379a5a.tar.bz2 lua-3386e3c1fba2a829fdf5987edce2a501d6379a5a.zip |
definition of ugly tokens
-rw-r--r-- | ugly.h | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ | |||
1 | enum | ||
2 | { | ||
3 | U_and=128, | ||
4 | U_do, | ||
5 | U_else, | ||
6 | U_elseif, | ||
7 | U_end, | ||
8 | U_function, | ||
9 | U_if, | ||
10 | U_local, | ||
11 | U_nil, | ||
12 | U_not, | ||
13 | U_or, | ||
14 | U_repeat, | ||
15 | U_return, | ||
16 | U_then, | ||
17 | U_until, | ||
18 | U_while, | ||
19 | U_eq = '='+128, | ||
20 | U_le = '<'+128, | ||
21 | U_ge = '>'+128, | ||
22 | U_ne = '~'+128, | ||
23 | U_sc = '.'+128 | ||
24 | }; | ||