Whether a parse error has occured in the last parsing.
| 529 | |
| 530 | //! Whether a parse error has occured in the last parsing. |
| 531 | bool HasParseError() const { return parseResult_.IsError(); } |
| 532 | |
| 533 | //! Get the \ref ParseErrorCode of last parsing. |
| 534 | ParseErrorCode GetParseErrorCode() const { return parseResult_.Code(); } |