| 13822 | |
| 13823 | |
| 13824 | static int str_dump (lua_State *L) { |
| 13825 | luaL_Buffer b; |
| 13826 | luaL_checktype(L, 1, LUA_TFUNCTION); |
| 13827 | lua_settop(L, 1); |
| 13828 | luaL_buffinit(L,&b); |
| 13829 | if (lua_dump(L, writer, &b) != 0) |
| 13830 | luaL_error(L, "unable to dump given function"); |
| 13831 | luaL_pushresult(&b); |
| 13832 | return 1; |
| 13833 | } |
| 13834 | |
| 13835 | |
| 13836 |
nothing calls this directly
no test coverage detected