Update error code and offset.
| 134 | void Clear() { Set(kParseErrorNone); } |
| 135 | //! Update error code and offset. |
| 136 | void Set(ParseErrorCode code, size_t offset = 0) { code_ = code; offset_ = offset; } |
| 137 | |
| 138 | private: |
| 139 | ParseErrorCode code_; |
nothing calls this directly
no outgoing calls
no test coverage detected