| 90 | |
| 91 | |
| 92 | static void pushNamedInt(lua_State* L, const char* key, int value) { |
| 93 | lua_pushstring(L, key); |
| 94 | lua_pushinteger(L, value); |
| 95 | lua_rawset(L, -3); |
| 96 | } |
| 97 | |
| 98 | |
| 99 | static void limitMembers(lua_State* L, const char* table, |
no test coverage detected