| 45 | class JSONParserContext { |
| 46 | public: |
| 47 | JSONParserContext(const char* begin, const char* end) : begin_(begin), cur_(begin), end_(end) { |
| 48 | last_line_begin_ = cur_; |
| 49 | } |
| 50 | |
| 51 | /*! |
| 52 | * \brief Peek the current character. |
nothing calls this directly
no outgoing calls
no test coverage detected