| 1200 | } |
| 1201 | |
| 1202 | Status ProcessDate() { |
| 1203 | RETURN_NOT_OK(f_parser_.CheckHasNext()); |
| 1204 | switch (f_parser_.Next()) { |
| 1205 | case 'D': |
| 1206 | return ProcessPrimitive(date32()); |
| 1207 | case 'm': |
| 1208 | return ProcessPrimitive(date64()); |
| 1209 | } |
| 1210 | return f_parser_.Invalid(); |
| 1211 | } |
| 1212 | |
| 1213 | Status ProcessInterval() { |
| 1214 | RETURN_NOT_OK(f_parser_.CheckHasNext()); |
nothing calls this directly
no test coverage detected