| 14927 | |
| 14928 | |
| 14929 | static void callTM (lua_State *L, const TValue *f, const TValue *p1, |
| 14930 | const TValue *p2, const TValue *p3) { |
| 14931 | setobj2s(L, L->top, f); /* push function */ |
| 14932 | setobj2s(L, L->top+1, p1); /* 1st argument */ |
| 14933 | setobj2s(L, L->top+2, p2); /* 2nd argument */ |
| 14934 | setobj2s(L, L->top+3, p3); /* 3th argument */ |
| 14935 | luaD_checkstack(L, 4); |
| 14936 | L->top += 4; |
| 14937 | luaD_call(L, L->top - 4, 0); |
| 14938 | } |
| 14939 | |
| 14940 | |
| 14941 | void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) { |
no test coverage detected