| 154 | |
| 155 | |
| 156 | static int luaB_yieldable (lua_State *L) { |
| 157 | lua_State *co = lua_isnone(L, 1) ? L : getco(L); |
| 158 | lua_pushboolean(L, lua_isyieldable(co)); |
| 159 | return 1; |
| 160 | } |
| 161 | |
| 162 | |
| 163 | static int luaB_corunning (lua_State *L) { |
nothing calls this directly
no test coverage detected