| 691 | } |
| 692 | |
| 693 | void GetGlobal(lua_State*L, uint32_t name_hash) |
| 694 | { |
| 695 | lua_pushinteger(L, (lua_Integer)name_hash); |
| 696 | // [-1] name_hash |
| 697 | |
| 698 | lua_gettable(L, LUA_GLOBALSINDEX); |
| 699 | // [-1] instance |
| 700 | } |
| 701 | |
| 702 | void GetInstance(lua_State* L) |
| 703 | { |
no test coverage detected