| 1141 | } |
| 1142 | |
| 1143 | Status ProcessBinaryView() { |
| 1144 | RETURN_NOT_OK(f_parser_.CheckHasNext()); |
| 1145 | switch (f_parser_.Next()) { |
| 1146 | case 'z': |
| 1147 | return ProcessPrimitive(binary_view()); |
| 1148 | case 'u': |
| 1149 | return ProcessPrimitive(utf8_view()); |
| 1150 | } |
| 1151 | return f_parser_.Invalid(); |
| 1152 | } |
| 1153 | |
| 1154 | Status ProcessTemporal() { |
| 1155 | RETURN_NOT_OK(f_parser_.CheckHasNext()); |
nothing calls this directly
no test coverage detected