| 314 | |
| 315 | |
| 316 | static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isbreakable) { |
| 317 | bl->breaklist = NO_JUMP; |
| 318 | bl->isbreakable = isbreakable; |
| 319 | bl->nactvar = fs->nactvar; |
| 320 | bl->upval = 0; |
| 321 | bl->previous = fs->bl; |
| 322 | fs->bl = bl; |
| 323 | lua_assert(fs->freereg == fs->nactvar); |
| 324 | } |
| 325 | |
| 326 | |
| 327 | static void leaveblock (FuncState *fs) { |
no outgoing calls
no test coverage detected