Mark block where variable at given level was defined (to emit close instructions later). */
| 279 | (to emit close instructions later). |
| 280 | */ |
| 281 | static void markupval(FuncState *fs, int level) { |
| 282 | BlockCnt *bl = fs->bl; |
| 283 | while (bl->nactvar > level) bl = bl->previous; |
| 284 | bl->upval = 1; |
| 285 | } |
| 286 | |
| 287 | |
| 288 | /* |