Whether the result is an error.
| 119 | operator bool() const { return !IsError(); } |
| 120 | //! Whether the result is an error. |
| 121 | bool IsError() const { return code_ != kParseErrorNone; } |
| 122 | |
| 123 | bool operator==(const ParseResult& that) const { return code_ == that.code_; } |
| 124 | bool operator==(ParseErrorCode code) const { return code_ == code; } |
no outgoing calls
no test coverage detected