| 172 | } |
| 173 | |
| 174 | void TYsonWriter::BeginCollection(ETokenType beginToken) { |
| 175 | Stream->Write(TokenTypeToChar(beginToken)); |
| 176 | ++Depth; |
| 177 | BeforeFirstItem = true; |
| 178 | } |
| 179 | |
| 180 | void TYsonWriter::CollectionItem(ETokenType separatorToken) { |
| 181 | if (!IsTopLevelFragmentContext()) { |
nothing calls this directly
no test coverage detected