| 1289 | |
| 1290 | |
| 1291 | LUA_API void lua_len (lua_State *L, int idx) { |
| 1292 | TValue *t; |
| 1293 | lua_lock(L); |
| 1294 | t = index2value(L, idx); |
| 1295 | luaV_objlen(L, L->top, t); |
| 1296 | api_incr_top(L); |
| 1297 | lua_unlock(L); |
| 1298 | } |
| 1299 | |
| 1300 | |
| 1301 | LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud) { |
no test coverage detected