#define NO_JUMP -1
#define getcode( fs, e )
#define luaK_codeAsBx( fs, o, A, sBx )
#define luaK_setmultret( fs, e )
| enum BinOpr | |
| { | |
| OPR_ADD; | |
| OPR_SUB; | |
| OPR_MUL; | |
| OPR_DIV; | |
| OPR_MOD; | |
| OPR_POW; | |
| OPR_CONCAT; | |
| OPR_NE; | |
| OPR_EQ; | |
| OPR_LT; | |
| OPR_LE; | |
| OPR_GT; | |
| OPR_GE; | |
| OPR_AND; | |
| OPR_OR; | |
| OPR_NOBINOPR; | |
| } |
| enum UnOpr | |
| { | |
| OPR_MINUS; | |
| OPR_NOT; | |
| OPR_LEN; | |
| OPR_NOUNOPR; | |
| } |