| 552 | } |
| 553 | |
| 554 | void Indent(size_t count, bool insertNewLine = true) { |
| 555 | if (insertNewLine) { |
| 556 | Out << '\n'; |
| 557 | } |
| 558 | |
| 559 | while (count--) { |
| 560 | Out << ' '; |
| 561 | } |
| 562 | } |
| 563 | |
| 564 | void Escape(const TStringBuf str) { |
| 565 | const unsigned char* i = reinterpret_cast<const unsigned char*>(str.data()); |