| 38 | ** nodes for block list (list of active blocks) |
| 39 | */ |
| 40 | typedef struct BlockCnt { |
| 41 | struct BlockCnt *previous; /* chain */ |
| 42 | int breaklist; /* list of jumps out of this loop */ |
| 43 | lu_byte nactvar; /* # active locals outside the breakable structure */ |
| 44 | lu_byte upval; /* true if some variable in the block is an upvalue */ |
| 45 | lu_byte isbreakable; /* true if `block' is a loop */ |
| 46 | } BlockCnt; |
| 47 | |
| 48 | |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected