| 980 | |
| 981 | |
| 982 | static int stacklevel (lua_State *L) { |
| 983 | unsigned long a = 0; |
| 984 | lua_pushinteger(L, (L->top.p - L->stack.p)); |
| 985 | lua_pushinteger(L, stacksize(L)); |
| 986 | lua_pushinteger(L, L->nCcalls); |
| 987 | lua_pushinteger(L, L->nci); |
| 988 | lua_pushinteger(L, (unsigned long)&a); |
| 989 | return 5; |
| 990 | } |
| 991 | |
| 992 | |
| 993 | static int table_query (lua_State *L) { |
nothing calls this directly
no test coverage detected