| 77 | void BeginLine() { saved_parsed_size_ = parsed_size_; } |
| 78 | |
| 79 | void PushFieldChar(char c) { |
| 80 | DCHECK_LT(parsed_size_, parsed_capacity_); |
| 81 | parsed_[parsed_size_++] = static_cast<uint8_t>(c); |
| 82 | } |
| 83 | |
| 84 | template <typename Word> |
| 85 | void PushFieldWord(Word w) { |