| 437 | |
| 438 | |
| 439 | static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) { |
| 440 | bl->isloop = isloop; |
| 441 | bl->nactvar = fs->nactvar; |
| 442 | bl->firstlabel = fs->ls->dyd->label.n; |
| 443 | bl->firstgoto = fs->ls->dyd->gt.n; |
| 444 | bl->upval = 0; |
| 445 | bl->previous = fs->bl; |
| 446 | fs->bl = bl; |
| 447 | lua_assert(fs->freereg == fs->nactvar); |
| 448 | } |
| 449 | |
| 450 | |
| 451 | /* |
no outgoing calls