| 157 | |
| 158 | |
| 159 | static int luaB_rawlen (lua_State *L) { |
| 160 | int t = lua_type(L, 1); |
| 161 | luaL_argexpected(L, t == LUA_TTABLE || t == LUA_TSTRING, 1, |
| 162 | "table or string"); |
| 163 | lua_pushinteger(L, l_castU2S(lua_rawlen(L, 1))); |
| 164 | return 1; |
| 165 | } |
| 166 | |
| 167 | |
| 168 | static int luaB_rawget (lua_State *L) { |
nothing calls this directly
no test coverage detected