| 7859 | |
| 7860 | |
| 7861 | static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isbreakable) { |
| 7862 | bl->breaklist = NO_JUMP; |
| 7863 | bl->isbreakable = isbreakable; |
| 7864 | bl->nactvar = fs->nactvar; |
| 7865 | bl->upval = 0; |
| 7866 | bl->previous = fs->bl; |
| 7867 | fs->bl = bl; |
| 7868 | lua_assert(fs->freereg == fs->nactvar); |
| 7869 | } |
| 7870 | |
| 7871 | |
| 7872 | static void leaveblock (FuncState *fs) { |
no outgoing calls
no test coverage detected