| 3938 | |
| 3939 | |
| 3940 | static int nilK (FuncState *fs) { |
| 3941 | TValue k, v; |
| 3942 | setnilvalue(&v); |
| 3943 | /* cannot use nil as key; instead use table itself to represent nil */ |
| 3944 | sethvalue(fs->L, &k, fs->h); |
| 3945 | return addk(fs, &k, &v); |
| 3946 | } |
| 3947 | |
| 3948 | |
| 3949 | void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { |