| 8 | #endif |
| 9 | |
| 10 | DBGDUMP_INLINE_IF_INCLUDED void TDumpBase::String(const TStringBuf& s) { |
| 11 | if (s) { |
| 12 | Raw(TString(s).Quote()); |
| 13 | } else { |
| 14 | Raw("(empty)"); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | DBGDUMP_INLINE_IF_INCLUDED void TDumpBase::String(const TWtringBuf& s) { |
| 19 | Raw("w"); |
no test coverage detected