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