Whether a parse error has occured in the last parsing.
| 2324 | |
| 2325 | //! Whether a parse error has occured in the last parsing. |
| 2326 | bool HasParseError() const { return parseResult_.IsError(); } |
| 2327 | |
| 2328 | //! Get the \ref ParseErrorCode of last parsing. |
| 2329 | ParseErrorCode GetParseError() const { return parseResult_.Code(); } |