| 603 | |
| 604 | |
| 605 | LUA_API int lua_getglobal (lua_State *L, const char *name) { |
| 606 | Table *reg = hvalue(&G(L)->l_registry); |
| 607 | lua_lock(L); |
| 608 | return auxgetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name); |
| 609 | } |
| 610 | |
| 611 | |
| 612 | LUA_API int lua_gettable (lua_State *L, int idx) { |
no test coverage detected