| 82 | // |
| 83 | |
| 84 | static void pushNamedString(lua_State* L, const char* key, |
| 85 | const char* value) { |
| 86 | lua_pushstring(L, key); |
| 87 | lua_pushstring(L, value); |
| 88 | lua_rawset(L, -3); |
| 89 | } |
| 90 | |
| 91 | |
| 92 | static void pushNamedInt(lua_State* L, const char* key, int value) { |
no test coverage detected