| 176 | |
| 177 | #if defined(LUA_USE_DUMP) |
| 178 | static int writer (lua_State *L, const void* b, size_t size, void* B) { |
| 179 | (void)L; |
| 180 | luaL_addlstring((luaL_Buffer*) B, (const char *)b, size); |
| 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | |
| 185 | static int str_dump (lua_State *L) { |
nothing calls this directly
no test coverage detected