mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
245 B
25 lines
245 B
30 years ago
|
enum
|
||
|
{
|
||
|
U_and=128,
|
||
|
U_do,
|
||
|
U_else,
|
||
|
U_elseif,
|
||
|
U_end,
|
||
|
U_function,
|
||
|
U_if,
|
||
|
U_local,
|
||
|
U_nil,
|
||
|
U_not,
|
||
|
U_or,
|
||
|
U_repeat,
|
||
|
U_return,
|
||
|
U_then,
|
||
|
U_until,
|
||
|
U_while,
|
||
|
U_eq = '='+128,
|
||
|
U_le = '<'+128,
|
||
|
U_ge = '>'+128,
|
||
|
U_ne = '~'+128,
|
||
|
U_sc = '.'+128
|
||
|
};
|