| 160 | |
| 161 | |
| 162 | static int luaB_yieldable (lua_State *L) { |
| 163 | lua_State *co = getoptco(L); |
| 164 | lua_pushboolean(L, lua_isyieldable(co)); |
| 165 | return 1; |
| 166 | } |
| 167 | |
| 168 | |
| 169 | static int luaB_corunning (lua_State *L) { |
nothing calls this directly
no test coverage detected