| 67 | }; |
| 68 | |
| 69 | void GenerateDeepJsonArray(TStringStream& stream, ui64 depth) { |
| 70 | stream << "{\"key\":"; |
| 71 | for (ui32 i = 0; i < depth - 1; ++i) { |
| 72 | stream << "["; |
| 73 | } |
| 74 | for (ui32 i = 0; i < depth - 1; ++i) { |
| 75 | stream << "]"; |
| 76 | } |
| 77 | stream << "}"; |
| 78 | } |
| 79 | |
| 80 | void GenerateDeepJsonDict(TStringStream& stream, ui64 depth) { |
| 81 | for (ui64 i = 0; i < depth - 1; ++i) { |