| 470 | } |
| 471 | |
| 472 | void WritePath(EncodeStream* stream, pag::PathHandle value) { |
| 473 | stream->writeEncodedUint32(static_cast<uint32_t>(value->verbs.size())); |
| 474 | if (value->verbs.empty()) { |
| 475 | return; |
| 476 | } |
| 477 | WritePathInternal(stream, value); |
| 478 | } |
| 479 | |
| 480 | void WriteTextDocument(EncodeStream* stream, pag::TextDocumentHandle value) { |
| 481 | WriteBlock(stream, value.get(), TextDocumentBlock); |
no test coverage detected