| 8455 | |
| 8456 | |
| 8457 | static void block (LexState *ls) { |
| 8458 | /* block -> chunk */ |
| 8459 | FuncState *fs = ls->fs; |
| 8460 | BlockCnt bl; |
| 8461 | enterblock(fs, &bl, 0); |
| 8462 | chunk(ls); |
| 8463 | lua_assert(bl.breaklist == NO_JUMP); |
| 8464 | leaveblock(fs); |
| 8465 | } |
| 8466 | |
| 8467 | |
| 8468 | /* |