| 269 | |
| 270 | |
| 271 | static int nilK (FuncState *fs) { |
| 272 | TValue k, v; |
| 273 | setnilvalue(&v); |
| 274 | /* cannot use nil as key; instead use table itself to represent nil */ |
| 275 | sethvalue(fs->L, &k, fs->h); |
| 276 | return addk(fs, &k, &v); |
| 277 | } |
| 278 | |
| 279 | |
| 280 | void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { |