| 76 | |
| 77 | template <class Scanner> |
| 78 | bool JsonParser<Scanner>::MoveToNextJson() { |
| 79 | while (!stream_.Eos()) { |
| 80 | if (stream_.Take() == '\n') { |
| 81 | return true; |
| 82 | } |
| 83 | } |
| 84 | return false; |
| 85 | } |
| 86 | |
| 87 | template <class Scanner> |
| 88 | Status JsonParser<Scanner>::Parse(int max_rows, int* num_rows) { |
no test coverage detected