#include "unicode/utypes.h"
Go to the source code of this file.
Data Structures | |
struct | UParseError |
A UParseError struct is used to returned detailed information about parsing errors. More... | |
Typedefs | |
typedef UParseError | UParseError |
A UParseError struct is used to returned detailed information about parsing errors. | |
Enumerations | |
enum | { U_PARSE_CONTEXT_LEN = 16 } |
The capacity of the context strings in UParseError. More... |
Definition in file parseerr.h.
|
A UParseError struct is used to returned detailed information about parsing errors. It is used by ICU parsing engines that parse long rules, patterns, or programs, where the text being parsed is long enough that more information than a UErrorCode is needed to localize the error. The line, offset, and context fields are optional; parsing engines may choose not to use to use them. The preContext and postContext strings include some part of the context surrounding the error. If the source text is "let for=7" and "for" is the error (e.g., because it is a reserved word), then some examples of what a parser might produce are the following:
|
|
The capacity of the context strings in UParseError.
Definition at line 26 of file parseerr.h. |