| 131 | : type_(type), options_(options), trie_cache_(trie_cache) {} |
| 132 | |
| 133 | Status Initialize() { return Status::OK(); } |
| 134 | |
| 135 | bool IsNull(const uint8_t* data, uint32_t size, bool quoted) { |
| 136 | if (quoted && !options_.quoted_strings_can_be_null) { |
no test coverage detected