Reads 1 byte and verifies that it matches ch.
| 726 | |
| 727 | // Reads 1 byte and verifies that it matches ch. |
| 728 | uint32_t TJSONProtocol::readJSONSyntaxChar(uint8_t ch) { |
| 729 | return readSyntaxChar(reader_, ch); |
| 730 | } |
| 731 | |
| 732 | // Decodes the four hex parts of a JSON escaped string character and returns |
| 733 | // the UTF-16 code unit via out. |
nothing calls this directly
no test coverage detected