| 604 | |
| 605 | |
| 606 | static int luaB_corunning (lua_State *L) { |
| 607 | if (lua_pushthread(L)) |
| 608 | lua_pushnil(L); /* main thread is not a coroutine */ |
| 609 | return 1; |
| 610 | } |
| 611 | |
| 612 | |
| 613 | static const luaL_Reg co_funcs[] = { |
nothing calls this directly
no test coverage detected