| 352 | return true; |
| 353 | } |
| 354 | void backUp(size_t numBytes) override { |
| 355 | CHECK_LE(numBytes, maxBytes_); |
| 356 | CHECK_GE(offset_, numBytes); |
| 357 | offset_ -= numBytes; |
| 358 | } |
| 359 | |
| 360 | private: |
| 361 | folly::StringPiece str_; |
no outgoing calls
no test coverage detected