| 712 | |
| 713 | |
| 714 | l_sinline int finishrawget (lua_State *L, const TValue *val) { |
| 715 | if (isempty(val)) /* avoid copying empty items to the stack */ |
| 716 | setnilvalue(s2v(L->top.p)); |
| 717 | else |
| 718 | setobj2s(L, L->top.p, val); |
| 719 | api_incr_top(L); |
| 720 | lua_unlock(L); |
| 721 | return ttype(s2v(L->top.p - 1)); |
| 722 | } |
| 723 | |
| 724 | |
| 725 | static Table *gettable (lua_State *L, int idx) { |
no outgoing calls
no test coverage detected