| 276 | |
| 277 | |
| 278 | static int nilK (FuncState *fs) { |
| 279 | TValue k, v; |
| 280 | setnilvalue(&v); |
| 281 | /* cannot use nil as key; instead use table itself to represent nil */ |
| 282 | sethvalue(fs->L, &k, fs->h); |
| 283 | return addk(fs, &k, &v); |
| 284 | } |
| 285 | |
| 286 | |
| 287 | void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { |