| 1335 | |
| 1336 | |
| 1337 | static int exp1(LexState *ls) { |
| 1338 | expdesc e; |
| 1339 | int reg; |
| 1340 | expr(ls, &e); |
| 1341 | luaK_exp2nextreg(ls->fs, &e); |
| 1342 | lua_assert(e.k == VNONRELOC); |
| 1343 | reg = e.u.info; |
| 1344 | return reg; |
| 1345 | } |
| 1346 | |
| 1347 | |
| 1348 | static void forbody(LexState *ls, int base, int line, int nvars, int isnum) { |
no test coverage detected