| 250 | using namespace luabind::detail; |
| 251 | |
| 252 | static void register_method(lua_State* L, const char* key, int mt_index, lua_CFunction f) |
| 253 | { |
| 254 | lua_pushcfunction(L, f); |
| 255 | lua_setfield(L, mt_index, key); |
| 256 | } |
| 257 | |
| 258 | CScriptVarsTable* lua_tosvt(lua_State* L, int index) |
| 259 | { |
no test coverage detected