| 624 | |
| 625 | |
| 626 | LUA_API int lua_getglobal (lua_State *L, const char *name) { |
| 627 | Table *reg = hvalue(&G(L)->l_registry); |
| 628 | lua_lock(L); |
| 629 | return auxgetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name); |
| 630 | } |
| 631 | |
| 632 | |
| 633 | LUA_API int lua_gettable (lua_State *L, int idx) { |
no test coverage detected