| 238 | class DebugWriter : public WriterI |
| 239 | { |
| 240 | virtual int32_t write(const void* _data, int32_t _size, Error* _err) override |
| 241 | { |
| 242 | BX_UNUSED(_err); |
| 243 | debugOutput(StringView( (const char*)_data, _size) ); |
| 244 | return _size; |
| 245 | } |
| 246 | }; |
| 247 | |
| 248 | WriterI* getDebugOut() |
nothing calls this directly
no test coverage detected