| 658 | |
| 659 | |
| 660 | LUA_API int lua_getglobal (lua_State *L, const char *name) { |
| 661 | const TValue *G; |
| 662 | lua_lock(L); |
| 663 | G = getGtable(L); |
| 664 | return auxgetstr(L, G, name); |
| 665 | } |
| 666 | |
| 667 | |
| 668 | LUA_API int lua_gettable (lua_State *L, int idx) { |
no test coverage detected