| 283 | |
| 284 | |
| 285 | static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isbreakable) { |
| 286 | bl->breaklist = NO_JUMP; |
| 287 | bl->isbreakable = isbreakable; |
| 288 | bl->nactvar = fs->nactvar; |
| 289 | bl->upval = 0; |
| 290 | bl->previous = fs->bl; |
| 291 | fs->bl = bl; |
| 292 | lua_assert(fs->freereg == fs->nactvar); |
| 293 | } |
| 294 | |
| 295 | |
| 296 | static void leaveblock (FuncState *fs) { |
no outgoing calls
no test coverage detected