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