Mark block where variable at given level was defined (to emit close instructions later). */
| 256 | (to emit close instructions later). |
| 257 | */ |
| 258 | static void markupval (FuncState *fs, int level) { |
| 259 | BlockCnt *bl = fs->bl; |
| 260 | while (bl->nactvar > level) bl = bl->previous; |
| 261 | bl->upval = 1; |
| 262 | } |
| 263 | |
| 264 | |
| 265 | /* |