| 199 | }; |
| 200 | |
| 201 | void InitializeHtml5(lua_State* L) |
| 202 | { |
| 203 | int top = lua_gettop(L); |
| 204 | |
| 205 | lua_pushvalue(L, LUA_GLOBALSINDEX); |
| 206 | luaL_register(L, LIB_NAME, ScriptHtml5_methods); |
| 207 | lua_pop(L, 2); |
| 208 | |
| 209 | assert(top == lua_gettop(L)); |
| 210 | } |
| 211 | } |
nothing calls this directly
no test coverage detected